Closed
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 ''