我希望其中一个 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[]
回调签名从水中吹走吗?我希望不会!