gpt4 book ai didi

typescript - 函数参数解构的 TSLint 错误

转载 作者:搜寻专家 更新时间:2023-10-30 21:45:22 26 4
gpt4 key购买 nike

我想删除我在以下(对象解构参数中)遇到的 tslint 错误:

export function renameProperty(
oldProp: string,
newProp: string,
{[oldProp]: old, ...others}
): any {
return {
[newProp]: old,
...others
};
}

我得到的错误在第 5 行:

TSLint:预期参数:'{[oldProp]: old, ...others}' 有一个类型定义 (typedef)

当然,我可以执行以下操作,但我宁愿简单地执行满足 Typescript 键入要求的操作。

export function renameProperty(
oldProp: string,
newProp: string,
// tslint:disable-next-line:typedef
{[oldProp]: old, ...others}
): any {
return {
[newProp]: old,
...others
};
}

关于如何在 {[oldProp]: old, ...others} 行中键入 def 的任何答案?

最佳答案

有趣的问题,但似乎没有明确的答案。但这是一种尝试:

export function renameProperty<
T extends {},
OP extends keyof T,
NP extends string,
R = Omit<T, OP> & Record<NP, T[OP]>
>(oldProp: OP, newProp: NP, { [oldProp]: value, ...others }: T): R {
return {
[newProp]: value,
...others
} as any; // *
}

这有好处,返回正确的类型,删除 oldProp 并添加 newProp

const c = renameProperty("foo", "bar", { foo: 1, baz: "spam", holy: "grenade" });
console.log(c.foo, c.bar, c.baz, c.holy);
/// complains here, that 'foo' is not available in c
/// typeof c.bar === "number"

*不幸的是,TS 无法从 {[newProp]: value} 中推断出正确的类型,结果类型是 { [x: string]: ... } 非常可怕因为需要任何(至少我没有找到删除它的方法 - 不确定这是错误还是限制)。

省略:Exclude property from type

关于typescript - 函数参数解构的 TSLint 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56266022/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com