Type alias RecursivePartial<T>

RecursivePartial<T>: {
    [P in keyof T]?: RecursivePartial<T[P]>
}

Type Parameters

  • T