Type Alias Partial<T>

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

    Make all properties in T optional

    Type Parameters

    • T