TypeScript/tests/cases/compiler/es5ExportDefaultFunctionDeclaration3.ts

11 lines
203 B
TypeScript

// @target: es5
// @module: commonjs
// @declaration: true
var before: typeof func = func();
export default function func(): typeof func {
return func;
}
var after: typeof func = func();