UNPKG

polymer-analyzer

Version:
16 lines (15 loc) 241 B
/** * @polymer * @mixinFunction * @memberof Polymer */ Polymer.TestMixin = (superclass) => class extends superclass { static get properties() { return { foo: { notify: true, type: String, } }; } }