core3-utils

@wixc3/common on Github

Home > @wixc3/common > Nullable

Nullable type

T or null/undefined

Signature:

export type Nullable<T> = T | null | undefined;