Skip to content

Commit

Permalink
change PolymerElement extern to var
Browse files Browse the repository at this point in the history
  • Loading branch information
samthor authored Dec 5, 2017
1 parent b311a77 commit 5c3d58a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion externs/polymer-externs.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,10 @@ PolymerTelemetry.dumpRegistrations;;
/** @type {PolymerTelemetry} */
Polymer.telemetry;

// nb. This is explicitly 'var', as Closure Compiler checks that this is the case.
/**
* @constructor
* @extends {HTMLElement}
* @implements {Polymer_LegacyElementMixin}
*/
let PolymerElement = Polymer.LegacyElementMixin();
var PolymerElement = Polymer.LegacyElementMixin();

0 comments on commit 5c3d58a

Please sign in to comment.