TypeScript/tests/baselines/reference/exportStarForValues.types

12 lines
175 B
Plaintext

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