TypeScript/tests/baselines/reference/separateCompilationWithDeclarationFile.types

10 lines
232 B
Plaintext
Raw Normal View History

=== tests/cases/compiler/file1.d.ts ===
declare function foo(): void;
2015-04-13 23:01:57 +02:00
>foo : () => void, Symbol(foo, Decl(file1.d.ts, 0, 0))
=== tests/cases/compiler/file1.ts ===
export var x;
2015-04-13 23:01:57 +02:00
>x : any, Symbol(x, Decl(file1.ts, 0, 10))