GuobaGuoba Utils

Nullable

@guoba-ai/utils / types / Nullable

Type Alias: Nullable<T>

type Nullable<T> = T | null;

Defined in: types.ts:19

A value that can be null.

Type Parameters

T

T

Example

type MaybeNull = Nullable<string> // string | null

On this page