/** Check if `Obj[k]` is optional */ export type IsOptional = Obj extends { [k in K]-?: Obj[k]; } ? False : True; //# sourceMappingURL=IsOptional.d.ts.map