enum Type {
Title = 'Title',
Input = 'Input',
}
type InputConfType = number;
type TitleConfType = string
// map 1 对 1
type ConfList = {
[Type.Input]: InputConfType,
[Type.Title]: TitleConfType,
};
// 想生成一个接口 A, 确保 type 和 conf 获得对应类型, 适用于以下情况
const Input : A ={
type: Type.Input,
conf: 11
}
const Title : A ={
type: Type.Title,
conf: 'str'
}
// 如果出现有以下情况则报错
const ErrorTemplate : A ={
type: Type.Input,
conf: 'str
}
想象中的 A 接口 效果 类似于, 求解....
interface A < T=ConfList, K=keyof T > {
type: K;
conf: T[K]
}
Ts 想写完美, 特别是涉及 约束 真像是戴着镣铐跳舞....
as
一把梭又感觉不太优雅~~~
🐶
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.