UNPKG

polymer-analyzer

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