generated at
2/18/2025, 11:49:09 AM
PartialByKeys<T, K>
定義
ts
type PartialByKeys_<T, K extends keyof T = keyof T> = Partial<T> & Omit<T, K>;
type-challenges
2757
(これを通すためには
MergeIntersections<T>
とかを噛ます必要がある)