Type Alias: Optional\<T>
Optional\<
T> =T|null|undefined
Defined in: core/src/lib/Types.ts:39
Given any type T, returns the union type T, null, and undefined.
Type Parameters
T
T
The type that will be made both nullable and undefinable.