UNPKG

@hexadrop/types

Version:

Hexagonal architecture utils library

6 lines (4 loc) 112 B
type RecursivePartial<T> = { [P in keyof T]?: RecursivePartial<T[P]>; }; export type { RecursivePartial };