UNPKG

react-instantsearch

Version:
5 lines (4 loc) 158 B
/** * Make certain keys of an object optional. */ export type PartialKeys<TObj, TKeys extends keyof TObj> = Omit<TObj, TKeys> & Partial<Pick<TObj, TKeys>>;