Yoghurt Xu: /** * Construct a type with the properties of T except for those in type K. */ type Omit<T, K extends keyof any> = Pick<T, Exclude<keyof T, K>>; Omit的第二个参数必须没有严格限制得是第一个参数的子属性
[原创]小程序的appid以及密钥获取
Omit和Exclude的区别
Yoghurt Xu: /** * Construct a type with the properties of T except for those in type K. */ type Omit<T, K extends keyof any> = Pick<T, Exclude<keyof T, K>>; Omit的第二个参数必须没有严格限制得是第一个参数的子属性