TypeScript/tests/cases/compiler/privacyCheckExportAssignmentOnExportedGenericInterface1.ts

10 lines
172 B
TypeScript

//@module: commonjs
//@declaration: true
module Foo {
export interface A<T> {
}
}
interface Foo<T> {
}
var Foo: new () => Foo.A<Foo<string>>;
export = Foo;