gpt4 book ai didi

javascript - 我如何转换 TypeScript 类型?

转载 作者:行者123 更新时间:2023-12-05 03:29:08 25 4
gpt4 key购买 nike

我有密码

interface IProps {
name: string;
age: number;
}

我想得到

type Result = {
key: 'name',
value: string
} | {
key: 'age',
value: number
}

有什么好的方法吗?

最佳答案

考虑这个例子:

interface IProps {
name: string;
age: number;
}

type Distribute<Obj, Keys extends keyof Obj> = Keys extends any ? { key: Keys, value: Obj[Keys] } : never

type Builder<T> = Distribute<T, keyof T>

// type Result = {
// key: "name";
// value: string;
// } | {
// key: "age";
// value: number;
// }
type Result = Builder<IProps>

Playground

Here您可以找到有关分配率的更多信息

这行代码 { key: Keys, value: Obj[Keys] } 由于分布性,分别应用于每个 IProps

附言还有一种替代方法:

type AlternativeWay<T> = {
[Prop in keyof T]: {
key: Prop,
value: T[Prop]
}
}[keyof T]


type Result = AlternativeWay<IProps>

关于javascript - 我如何转换 TypeScript 类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71076944/

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