type OptionalKeys<T, TKey> = Omit<T, TKey> & Partial<Pick<T, TKey>>;
Defined in: types.ts:11
• T
• TKey extends keyof T