TypeScript/tests/cases/compiler/incompatibleExports2.ts

5 lines
111 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
declare module "foo" {
export interface x { a: string }
interface y { a: Date }
export = y;
}