TypeScript/tests/cases/compiler/privacyCheckExportAssignmentOnExportedGenericInterface1.ts

10 lines
172 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//@module: commonjs
//@declaration: true
2014-07-13 01:04:16 +02:00
module Foo {
export interface A<T> {
}
}
interface Foo<T> {
}
var Foo: new () => Foo.A<Foo<string>>;
export = Foo;