Последняя активность 2 days ago

Версия 0cc97be554f3269cf3dedf5cacd5e1b37b268ab1

recursivePartial.ts Исходник
1/**
2 * https://github.com/Noah2610/i3-color-theme-editor/blob/master/src/util/recursivePartial.ts
3 */
4
5export type RecursivePartial<T> = {
6 [P in keyof T]?: T[P] extends (infer U)[]
7 ? RecursivePartial<U>[]
8 : T[P] extends object
9 ? RecursivePartial<T[P]>
10 : T[P];
11};