UNPKG

polymer-analyzer

Version:
19 lines (18 loc) 298 B
/** * A mixin description * @summary A mixin summary * @polymer * @mixinFunction */ function TestMixin(superclass) { return class extends superclass { static get properties() { return { foo: { notify: true, type: String, }, }; } } }