UNPKG

polymer-analyzer

Version:
20 lines (18 loc) 278 B
/** * @polymer * @mixinFunction * @memberof Polymer */ let TestMixin; function Foo(superclass) { return class extends superclass { static get properties() { return { foo: { notify: true, type: String, }, }; } } }