TypeScript/tests/baselines/reference/exportStarForValues6.types

12 lines
202 B
Text

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