-
Notifications
You must be signed in to change notification settings - Fork 139
Open
Description
JSR doesn't show the types for an extracted method from a class. This happens both for normal and static methods.
For example, JSR doesn't show types for the extracted static method baz
.
/**
* Foo class
*/
export class Foo {
/**
* Bar static method
*
* @param q The question
* @returns The answer
*/
static bar(q: string): number {
return 42;
}
}
export const baz = Foo.bar;
For comparison, VSCode does show the types.
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
Needs Triage