Type Alias Nullable<T>

Nullable<T>: Optional<T | null>

A union type for either the parameterized type T, null, or undefined -- the opposite of the NonNullable builtin conditional type.

Type Parameters

  • T