TypeScript/tests/baselines/reference/es6ExportDefaultIdentifier.types

9 lines
144 B
Plaintext
Raw Normal View History

2015-03-13 01:14:33 +01:00
=== tests/cases/compiler/es6ExportDefaultIdentifier.ts ===
export function f() { }
>f : () => void
2015-03-13 01:14:33 +01:00
export default f;
>f : () => void
2015-03-13 01:14:33 +01:00