GuobaGuoba Utils

Nullish

@guoba-ai/utils / types / Nullish

Type Alias: Nullish<T>

type Nullish<T> = T | null | undefined;

Defined in: types.ts:29

A value that can be null or undefined.

Type Parameters

T

T

Example

type MaybeNullish = Nullish<string> // string | null | undefined

On this page