顺便说一句,为了更好地说明我想要的是什么,请查看这个库:
https://github.com/vriad/zod它允许你在设计/编译时定义类似于spec的模式,这些模式也被TS编译器理解和使用。
// spec定义 - 存在于TS编译之后,可以用它来验证模式
const dogSchema = z.object({
name: z.string(),
neutered: z.boolean(),
});
// 验证schema的运行时
const cujo = dogSchema.parse({
name: 'Cujo',
neutered: true,
}); // 通过验证,返回Dog
// TypeScript类型定义 - 编译后不存在
type Dog = z.infer<typeof dogSchema>;
/*
相当于
type Dog = {
name:string;
neutered: boolean;
}
*/
// 使用推断类型进行编译时类型检查和设计时智能提示
const fido: Dog = {
name: 'Fido',
}; // TypeError: 缺少必需属性 `neutered`