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

13 lines
325 B
TypeScript

//@module: amd
// @declaration: true
// @Filename: declFileExportAssignmentOfGenericInterface_0.ts
interface Foo<T> {
a: string;
}
export = Foo;
// @Filename: declFileExportAssignmentOfGenericInterface_1.ts
import a = require('declFileExportAssignmentOfGenericInterface_0');
export var x: a<a<string>>;
x.a;