UNPKG

polymer-analyzer

Version:
22 lines (21 loc) 340 B
/** * @mixinFunction * @polymer */ Polymer.TestMixin = Polymer.woohoo(function TestMixin(base) { /** * @mixinClass * @polymer */ class TestMixin extends base { static get properties() { return { foo: { notify: true, type: String, }, }; }; }; return TestMixin; });