-
Notifications
You must be signed in to change notification settings - Fork 13k
Closed
Labels
BugA bug in TypeScriptA bug in TypeScriptFixedA PR has been merged for this issueA PR has been merged for this issue
Milestone
Description
Affected Branch: Affected Build: Affected Product Language: Steps to reproduce:
class privateClass {
}
export interface publicInterfaceWithPrivateTypeParameters {
new <T extends privateClass>(): privateClass;
}
Expected: TypeParameter 'T extends privateClass' of constructor signature from exported interface has or is using private type 'privateClass'.
Actual: nothing
2 general classes of errors that went missing:
TypeParameter '' of <call signature | construct signature | <public?> <static?> method> from exported <class | interface> has or is using private type ''
TypeParameter '' of exported <class | interface> has or is using private type ''
Metadata
Metadata
Assignees
Labels
BugA bug in TypeScriptA bug in TypeScriptFixedA PR has been merged for this issueA PR has been merged for this issue