Reports an assignment to a property that is not defined in the type of a variable.

Example:


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

myVariable.newProperty = 3; // bad