TypeScript/tests/cases/compiler/exportStarForValues6.ts

8 lines
140 B
TypeScript

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