UNPKG

polymer-analyzer

Version:
19 lines (17 loc) 265 B
/** * @polymerMixin * @memberof Polymer */ let TestMixin; function Foo(superclass) { return class extends superclass { static get properties() { return { foo: { notify: true, type: String, }, }; } } }