zcash-grant-system/frontend/client/typings/omit.d.ts

2 lines
64 B
TypeScript

type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;