Skip to Content
TypeNullable

Nullable

A type wrapper for values that may be null or undefined.

Import

import type { Nullable } from '@fullstacksjs/toolbox'; type name = Nullable<string> // string | null | undefined

Signature

type name = Nullable<string> // string | null | undefined

Example

type name = Nullable<string> // string | null | undefined
Last updated on