-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
When trying to organize a class that is generic
export class MYComponent<T extends keyof typeof ComponentProviderMap = 'TextBox'>
implements ICustomElementViewModel { }it ends up cutting out part of the class line
export class MYComponent<T extends keyof typeof ComponentProviderMap = 'TextBox'>
imSeems like the generic <> is not playing nice with the parser
looks like it may also be related to using decorators on the class
@customElement('my-component')
@inject(ILoggingService)
export class MYComponent<T extends keyof typeof ComponentProviderMap = 'TextBox'> implements ICustomElementViewModel {}export class MYComponent<T extends keyof typeof ComponentProviderMap = 'TextBox'>
imReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels