TypeScript/tests/baselines/reference/exportAssignmentWithoutAllowSyntheticDefaultImportsError.types

12 lines
150 B
Plaintext

=== /bar.ts ===
export = bar;
>bar : () => void
function bar() {}
>bar : () => void
=== /foo.ts ===
import bar from './bar';
>bar : any