TypeScript/tests/baselines/reference/es6ExportDefaultIdentifier.types

9 lines
252 B
Plaintext
Raw Normal View History

2015-03-13 01:14:33 +01:00
=== tests/cases/compiler/es6ExportDefaultIdentifier.ts ===
export function f() { }
2015-04-13 23:01:57 +02:00
>f : () => void, Symbol(f, Decl(es6ExportDefaultIdentifier.ts, 0, 0))
2015-03-13 01:14:33 +01:00
export default f;
2015-04-13 23:01:57 +02:00
>f : () => void, Symbol(f, Decl(es6ExportDefaultIdentifier.ts, 0, 0))
2015-03-13 01:14:33 +01:00