Type that represents either a non-null value of T or undefined. Used for optional values that cannot be null when present.
The type of the value
// Example function handling Maybe typefunction processValue(value: Maybe<string>) { return value ? value.toUpperCase() : "no value";} Copy
// Example function handling Maybe typefunction processValue(value: Maybe<string>) { return value ? value.toUpperCase() : "no value";}
Type that represents either a non-null value of T or undefined. Used for optional values that cannot be null when present.