附属说明:为了更好地说明我寻找的内容,请查看这个库:
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类型定义 - 在TS编译之后不存在
type Dog = z.infer<typeof dogSchema>;
/*
相当于
type Dog = {
name: string;
neutered: boolean;
}
*/
// 使用推断类型进行编译时类型检查和设计时智能感应
const fido: Dog = {
name: 'Fido',
}; // TypeError: 缺少必需属性 `neutered`