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