We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is on version 3.0.0-beta.7
3.0.0-beta.7
I have a type defined as export type Initializer = AsyncHandler;. Another class implements it as
export type Initializer = AsyncHandler;
export class LoggerInitializer extends BaseAsyncHandler<Initializer> implements Initializer
BaseAsyncHandler is in componentsignore.
BaseAsyncHandler
componentsignore
In this case the generated JSON-LD file has no extends component. If I change the class to
extends
export class LoggerInitializer extends BaseAsyncHandler<Initializer> implements AsyncHandler
I do get an extends component.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is on version
3.0.0-beta.7
I have a type defined as
export type Initializer = AsyncHandler;
. Another class implements it asBaseAsyncHandler
is incomponentsignore
.In this case the generated JSON-LD file has no
extends
component. If I change the class toI do get an
extends
component.The text was updated successfully, but these errors were encountered: