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

28 lines
402 B
Plaintext

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