/** * 通过属性值的类型来排除属性 * @example * 输入: * type Example = {a:string,b:number,c:string} * type example = OmitByValue * 输出: * type example = { * b: number; * } */ export type OmitByValue = Pick;