diff --git a/lib/mixins/property-effects.js b/lib/mixins/property-effects.js index 05a41e0492..bff06951fd 100644 --- a/lib/mixins/property-effects.js +++ b/lib/mixins/property-effects.js @@ -1415,7 +1415,7 @@ export const PropertyEffects = dedupingMixin(superClass => { if (value !== node[prop] || typeof value == 'object') { // Note, className needs style scoping so this needs wrapping. if (prop === 'className') { - node = wrap(node); + node = /** @type {!Node} */(wrap(node)); } node[prop] = value; }