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