报告对未在变量类型中定义的属性的赋值。

示例:


/**
 * @type {{ property1: string, property2: number }}
 */
let myVariable = create();

myVariable.newProperty = 3; // 不良