=== tests/cases/compiler/genericClassImplementingGenericInterfaceFromAnotherModule.ts === module foo { >foo : unknown export interface IFoo { } >IFoo : IFoo >T : T } module bar { >bar : typeof bar export class Foo implements foo.IFoo { } >Foo : Foo >T : T >foo : unknown >IFoo : foo.IFoo >T : T }