Type Alias DeepPartial<T>

DeepPartial: T extends object ? { [P in keyof T]?: DeepPartial<T[P]> } : T

Type Parameters

  • T