Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 317 Bytes

tough-cookie.nullable.md

File metadata and controls

13 lines (8 loc) · 317 Bytes

Home > tough-cookie > Nullable

Nullable type

The inverse of NonNullable.

Signature:

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