TypeScript/tests/baselines/reference/functionReturningItself.js
2014-07-15 13:08:10 -07:00

14 lines
248 B
JavaScript

//// [functionReturningItself.ts]
function somefn() {
return somefn;
}
//// [functionReturningItself.js]
function somefn() {
return somefn;
}
//// [functionReturningItself.d.ts]
declare function somefn(): () => typeof somefn;