타입 별칭: OptionalKeys<T, TKey>
type OptionalKeys<T, TKey> = Omit<T, TKey> & Partial<Pick<T, TKey>>;
정의 위치: types.ts:11
타입 매개변수
T
T
TKey
TKey extends keyof T
type OptionalKeys<T, TKey> = Omit<T, TKey> & Partial<Pick<T, TKey>>;
정의 위치: types.ts:11
T
TKey extends keyof T