Skip to content

Commit

Permalink
port other fixes as well
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed Jun 25, 2018
1 parent bbaaf72 commit bcd01b9
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions externs/polymer-externs.js
Expand Up @@ -15,19 +15,19 @@

/**
* @typedef {{
* type: !Function,
* value: *,
* readOnly: (boolean | undefined),
* computed: (string | undefined),
* reflectToAttribute: (boolean | undefined),
* notify: (boolean | undefined),
* observer: (string | function(*,*) | undefined)
* type: !Function,
* value: (* | undefined),
* readOnly: (boolean | undefined),
* computed: (string | undefined),
* reflectToAttribute: (boolean | undefined),
* notify: (boolean | undefined),
* observer: (string | function(this:?, ?, ?) | undefined)
* }}
*/
let PolymerElementPropertiesMeta;

/**
* @typedef {Object<string, !PolymerElementPropertiesMeta>}
* @typedef {Object<string, !Function|!PolymerElementPropertiesMeta>}
*/
let PolymerElementProperties;

Expand Down Expand Up @@ -69,9 +69,6 @@ PropertiesMixinConstructor.properties;
*/
function Polymer(init){}

/** @type {PolymerElementProperties} */
Polymer.ElementProperties;

/**
* @type {(function(*,string,string,Node):*)|undefined}
*/
Expand Down Expand Up @@ -120,4 +117,4 @@ PolymerElement.prototype.registered = function() {};
/** On attached to the DOM callback. */
PolymerElement.prototype.attached = function() {};
/** On detached from the DOM callback. */
PolymerElement.prototype.detached = function() {};
PolymerElement.prototype.detached = function() {};

0 comments on commit bcd01b9

Please sign in to comment.