4

我希望其中一个 TypeScript 能够在这里投入使用。我是绝对类型的贡献者之一,我一直在努力修复与Qdts相关的损坏测试。

q-tests.ts中的以下测试在TS 0.9.5 之前有效:

var eventualAdd = Q.promised((a: number, b: number) => a + b);

promised方法定义如下所示:

export function promised<T>(callback: (...args: any[]) => T): (...args: any[]) => Promise<T>;

但是现在我们在 0.9.5 上,这个测试没有编译并且失败并出现这个错误:

error TS2082: Supplied parameters do not match any signature of call target:
Call signatures of types '(a: number, b: number) => number' and '(...args: any[]) => {}' are incompatible:
Call signature expects 0 or fewer parameters.
error TS2087: Could not select overload for 'call' expression.

我已经尝试调整测试以获得更多的洞察力 - 例如通过指定这样的类型:

var eventualAdd = Q.promised<number>((a: number, b: number) => a + b);

但我没有得到更多信息 - 它以类似的方式失败:

error TS2082: Supplied parameters do not match any signature of call target:
Call signatures of types '(a: number, b: number) => number' and '(...args: any[]) => number' are incompatible:
Call signature expects 0 or fewer parameters.
error TS2087: Could not select overload for 'call' expression.

任何人都可以提供任何见解吗?我没有看到描述打字方式的任何问题。它看起来正确,但它不起作用。我似乎记得使用 TS 0.9.5 现在默认将任何内容视为 {}?这会将...args: any[]回调签名从水中吹走吗?我希望不会!

4

1 回答 1

2

感谢 IgorBek 在这里回答:https ://github.com/borisyankov/DefinitelyTyped/pull/1467

我引用:

“我将参数重写为可选参数。...args: any[]意味着函数需要 0 个或更多参数。所以即使没有参数它也应该工作。(a: number, b: number) => number由于它需要 2 个参数而无法转换。所以当你编写时(a?: number, b?: number) => number,函数需要 0、1 或 2 个参数(或更多,如果我们将剩余参数视为未使用)。”

Ryan Cavanaugh 是正确的,这是重复的。我希望按照建议对 TypeScript 进行调整,因此将非可选参数指定为可选参数不再是解决方案。它更像是一种解决方法,而不是合法代码。

于 2013-12-23T09:24:53.523 回答