Open thepassle opened 4 years ago
Given the following code:
const MyMixin = (klass: any) => class MyMixin extends klass { myFoo: string = "foo"; } export class CustomElement extends MyMixin(MySuperClass) { // etc }
I'd expect the myFoo field to be in the output for the CustomElement ClassDoc custom-elements.json, but it's not
myFoo
ClassDoc
See also #135
Given the following code:
I'd expect the
myFoo
field to be in the output for the CustomElementClassDoc
custom-elements.json, but it's not