UNPKG

@gravity-ui/graph

Version:

Modern graph editor component

4 lines (3 loc) 176 B
export type RecursivePartial<T> = { [P in keyof T]?: T[P] extends (infer U)[] ? RecursivePartial<U>[] : T[P] extends object | undefined ? RecursivePartial<T[P]> : T[P]; };