TypeScript/tests/cases/compiler/genericClassImplementingGenericInterfaceFromAnotherModule.ts
2014-07-12 17:30:19 -07:00

8 lines
143 B
TypeScript

// @declaration: true
module foo {
export interface IFoo<T> { }
}
module bar {
export class Foo<T> implements foo.IFoo<T> { }
}