UNPKG

wildboar-context

Version:

Library for constructing context objects for pure functional programming.

5 lines 248 B
declare type RecursivePartial<T> = { [P in keyof T]?: T[P] extends (infer U)[] ? RecursivePartial<U>[] : T[P] extends object ? RecursivePartial<T[P]> : T[P]; }; export default RecursivePartial; //# sourceMappingURL=RecursivePartial.d.ts.map