Union of T with null and undefined for values that may be absent.
T
null
undefined
Underlying type when the value is present.
type MaybeName = Maybe<string>;// ^? string | null | undefined Copy
type MaybeName = Maybe<string>;// ^? string | null | undefined
Union of
Twithnullandundefinedfor values that may be absent.