TypeScript/tests/baselines/reference/separateCompilationWithDeclarationFile.types

10 lines
161 B
Plaintext
Raw Normal View History

=== tests/cases/compiler/file1.d.ts ===
declare function foo(): void;
>foo : () => void
=== tests/cases/compiler/file1.ts ===
export var x;
>x : any