Optional value type.
Value type
Represents a value that may be null or undefined. Useful as a concise shorthand for optional union types.
null
undefined
type A = Maybe< string >;// string | null | undefined Copy
type A = Maybe< string >;// string | null | undefined
Optional value type.