Type Alias Optional<T>

Optional<T>: T | undefined

A union type for either the parameterized type T or undefined -- the opposite of NonOptional.

Type Parameters

  • T