@@ -1145,7 +1145,7 @@ Polymer_LegacyElementMixin.prototype.flushDebouncer = function(jobName){};
1145
1145
*/
1146
1146
Polymer_LegacyElementMixin . prototype . cancelDebouncer = function ( jobName ) { } ;
1147
1147
/**
1148
- * @param {Function } callback The callback function to run, bound to `this`.
1148
+ * @param {! Function } callback The callback function to run, bound to `this`.
1149
1149
* @param {number= } waitTime Time to wait before calling the
1150
1150
`callback`. If unspecified or 0, the callback will be run at microtask
1151
1151
timing (before paint).
@@ -1167,18 +1167,18 @@ Polymer_LegacyElementMixin.prototype.cancelAsync = function(handle){};
1167
1167
Polymer_LegacyElementMixin . prototype . create = function ( tag , props ) { } ;
1168
1168
/**
1169
1169
* @param {string } href URL to document to load.
1170
- * @param {Function } onload Callback to notify when an import successfully
1170
+ * @param {! Function= } onload Callback to notify when an import successfully
1171
1171
loaded.
1172
- * @param {Function } onerror Callback to notify when an import
1172
+ * @param {! Function= } onerror Callback to notify when an import
1173
1173
unsuccessfully loaded.
1174
- * @param {boolean } optAsync True if the import should be loaded `async`.
1174
+ * @param {boolean= } optAsync True if the import should be loaded `async`.
1175
1175
Defaults to `false`.
1176
1176
* @return {HTMLLinkElement }
1177
1177
*/
1178
1178
Polymer_LegacyElementMixin . prototype . importHref = function ( href , onload , onerror , optAsync ) { } ;
1179
1179
/**
1180
1180
* @param {string } selector Selector to test.
1181
- * @param {Element= } node Element to test the selector against.
1181
+ * @param {! Element= } node Element to test the selector against.
1182
1182
* @return {boolean }
1183
1183
*/
1184
1184
Polymer_LegacyElementMixin . prototype . elementMatches = function ( selector , node ) { } ;
@@ -1320,4 +1320,4 @@ Polymer_ArraySelectorMixin.prototype.select = function(item){};
1320
1320
* @param {number } idx Index from `items` array to select
1321
1321
* @return {void }
1322
1322
*/
1323
- Polymer_ArraySelectorMixin . prototype . selectIndex = function ( idx ) { } ;
1323
+ Polymer_ArraySelectorMixin . prototype . selectIndex = function ( idx ) { } ;
0 commit comments