TypeScript/tests/baselines/reference/functionDeclarationWithArgumentOfTypeFunctionTypeArray.js

17 lines
387 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [functionDeclarationWithArgumentOfTypeFunctionTypeArray.ts]
function foo(args: { (x): number }[]) {
return args.length;
}
//// [functionDeclarationWithArgumentOfTypeFunctionTypeArray.js]
function foo(args) {
return args.length;
}
//// [functionDeclarationWithArgumentOfTypeFunctionTypeArray.d.ts]
2014-11-11 00:39:01 +01:00
declare function foo(args: {
(x): number;
}[]): number;