我破坏对象文字并使用spread/rest
运算符。
如何将类型注释添加到rest
部分?
我尝试这样做,但tsc
会抛出错误。
const { x, y, ...rest }: {x: number, y: number, ...rest: any} = { x: 1, y: 2, z: 3, q: 4 };
答案 0 :(得分:1)
对于...rest
部分,您可以执行以下操作:
const { x, y, ...rest }: { x: number, y: number, [key: string]: number } = { x: 1, y: 2, z: 3, q: 4 };
它基本上意味着它接受任何其他键作为字符串,其中数字为值。