Appearance
Represents a value that can be null or undefined.
type Maybe<T> = T | null | undefined
unknown
The value type.
import type { Maybe } from '@chronus-dev/utils' type Name = Maybe<string> // => string | null | undefined