UNPKG

polymer-analyzer

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