UNPKG

polymer-analyzer

Version:
18 lines (17 loc) 291 B
/** * A mixin description * @summary A mixin summary * @polymer * @mixinFunction * @memberof Polymer */ const TestMixin = (superclass) => class extends superclass { static get properties() { return { foo: { notify: true, type: String, }, }; } }