runem / web-component-analyzer

CLI that analyzes web components and emits documentation
https://runem.github.io/web-component-analyzer
MIT License
501 stars 61 forks source link

mixin members not present in output #191

Open thepassle opened 3 years ago

thepassle commented 3 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

web-padawan commented 3 years ago

See also #135