TypeScript/tests/baselines/reference/exportStarForValues5.types

12 lines
182 B
Plaintext

=== tests/cases/compiler/file1.ts ===
export interface Foo { x }
>Foo : Foo
>x : any
=== tests/cases/compiler/file2.ts ===
export * from "file1"
export var x;
>x : any