wormhole/explorer/src/@types/index.d.ts

2 lines
80 B
TypeScript

export type PartialBy<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;