Type alias PartialOrAbsent<Value>

PartialOrAbsent<Value>: Partial<Value> | null | undefined

Useful for representing some value that might be present and / or complete.

Type Parameters

  • Value

    The value that might be present or complete.