TypeScript/tests/baselines/reference/functionReturningItself.js

14 lines
242 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [functionReturningItself.ts]
function somefn() {
return somefn;
}
//// [functionReturningItself.js]
function somefn() {
return somefn;
}
//// [functionReturningItself.d.ts]
declare function somefn(): typeof somefn;