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

5 lines
111 B
TypeScript

declare module "foo" {
export interface x { a: string }
interface y { a: Date }
export = y;
}