Type alias DeepPartial<T>

DeepPartial<T>: Partial<{
    [K in keyof T]: Partial<T[K]>
}>

Type Parameters

  • T

Generated using TypeDoc