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