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

2 lines
64 B
TypeScript
Raw Normal View History

2018-12-27 09:41:26 -08:00
type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;