Merge branch 'master' into legacy-undefined-noBatch-sync

This commit is contained in:
Steven Orvell
2020-01-10 10:46:17 -08:00
9 changed files with 45 additions and 10 deletions

View File

@@ -14,7 +14,7 @@
*
* @interface
*/
var PolymerDomApi = function() {};
let PolymerDomApi = function() {};
/**
* @param {?Node} node
@@ -103,6 +103,9 @@ PolymerDomApi.prototype.getDestinationInsertionPoints = function() {};
/** @return {?Node} */
PolymerDomApi.prototype.getOwnerRoot = function() {};
/** @type {!Node} */
PolymerDomApi.prototype.node;
/**
* @param {string} attribute
* @param {string} value

View File

@@ -41,7 +41,7 @@ PolymerInit.prototype.extends;
PolymerInit.prototype.properties;
/** @type {(!Array<string> | undefined)} */
PolymerInit.prototype.observers;
/** @type {(!HTMLTemplateElement | string | undefined)} */
/** @type {(!HTMLTemplateElement | string | undefined | null)} */
PolymerInit.prototype.template;
/** @type {(!Object<string, *> | undefined)} */
PolymerInit.prototype.hostAttributes;
@@ -60,7 +60,7 @@ PolymerElementConstructor.extends;
PolymerElementConstructor.properties;
/** @type {(!Array<string> | undefined)} */
PolymerElementConstructor.observers;
/** @type {(!HTMLTemplateElement | string | undefined)} */
/** @type {(!HTMLTemplateElement | string | undefined | null)} */
PolymerElementConstructor.template;
/** @interface */
@@ -174,7 +174,7 @@ var PolymerElement = function() {};
PolymerElement.is;
/**
* The template to stamp when creating this element type.
* @type {!HTMLTemplateElement|undefined}
* @type {!HTMLTemplateElement|undefined|null}
*/
PolymerElement.template;
/**