Skip to main content

Type Alias: Nullable<T>

Nullable<T> = null | T

Type that allows a value to be null.

This is a utility type used throughout the codebase to explicitly indicate that a value can be null.

Type Parameters

T

T