TypeScript/tests/baselines/reference/exportStarForValues5.symbols

12 lines
270 B
Plaintext

=== tests/cases/compiler/file1.ts ===
export interface Foo { x }
>Foo : Symbol(Foo, Decl(file1.ts, 0, 0))
>x : Symbol(x, Decl(file1.ts, 1, 22))
=== tests/cases/compiler/file2.ts ===
export * from "file1"
export var x;
>x : Symbol(x, Decl(file2.ts, 1, 10))