TypeScript/tests/baselines/reference/functionDeclarationWithArgumentOfTypeFunctionTypeArray.js

17 lines
392 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]
declare function foo(args: {
(x: any): number;
}[]): number;