TypeScript/tests/cases/compiler/exportStarForValues5.ts

8 lines
133 B
TypeScript

// @module: amd
// @filename: file1.ts
export interface Foo { x }
// @filename: file2.ts
export * from "file1"
export var x;