TypeScript/tests/baselines/reference/es6ExportDefaultIdentifier.types
2015-04-15 16:44:20 -07:00

9 lines
144 B
Plaintext

=== tests/cases/compiler/es6ExportDefaultIdentifier.ts ===
export function f() { }
>f : () => void
export default f;
>f : () => void