UNPKG

polymer-analyzer

Version:
20 lines (19 loc) 320 B
/** * @polymerMixin */ Polymer.TestMixin = Polymer.woohoo(function TestMixin(base) { /** * @polymerMixinClass */ class TestMixin extends base { static get properties() { return { foo: { notify: true, type: String, }, }; }; }; return TestMixin; });