为什么不推断其余的泛型参数呢?

时间:2019-07-07 11:54:23

标签: typescript

在此代码上,打字稿显示错误:A rest element type must be an array type

type B<X extends any[]> = [...X];

但是,此代码有效

type A = any[];
type B = [...A];

为什么?

0 个答案:

没有答案