TypeScript/tests/baselines/reference/privacyCheckExportAssignmentOnExportedGenericInterface1.js
2014-07-12 17:30:19 -07:00

14 lines
293 B
JavaScript

//// [privacyCheckExportAssignmentOnExportedGenericInterface1.ts]
module Foo {
export interface A<T> {
}
}
interface Foo<T> {
}
var Foo: new () => Foo.A<Foo<string>>;
export = Foo;
//// [privacyCheckExportAssignmentOnExportedGenericInterface1.js]
var Foo;
module.exports = Foo;