UNPKG

polymer-analyzer

Version:
17 lines (16 loc) 263 B
/** * @polymerMixin * @memberof Polymer */ const TestMixin = function(superclass) { return class extends superclass { static get properties() { return { foo: { notify: true, type: String, }, }; } } }