Type Alias OptionalModelProp<TPropValue>

OptionalModelProp: ModelProp<
    TPropValue,
    TPropValue
    | null
    | undefined,
    TPropValue,
    TPropValue | null | undefined,
    never,
>

A model prop that is definitely optional.

Type Parameters

  • TPropValue