Type alias Partial<T>

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

Partial Object

Type Parameters

  • T