UNPKG

polymer-analyzer

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