TypeScript/tests/baselines/reference/exportStarForValues2.types
2016-09-01 14:25:44 -07:00

19 lines
287 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 = 1;
>x : number
>1 : 1
=== tests/cases/compiler/file3.ts ===
export * from "file2"
var x = 1;
>x : number
>1 : 1