TypeScript/tests/baselines/reference/es5ExportDefaultFunctionDeclaration4.types

15 lines
377 B
Text

=== tests/cases/compiler/es5ExportDefaultFunctionDeclaration4.ts ===
declare module "bar" {
var before: typeof func;
>before : () => typeof func
>func : () => typeof func
export default function func(): typeof func;
>func : () => typeof func
>func : () => typeof func
var after: typeof func;
>after : () => typeof func
>func : () => typeof func
}