UNPKG

@flex-development/tutils

Version:
12 lines (11 loc) 256 B
/** * @file Type Definitions - Nullable * @module tutils/types/Nullable */ /** * Constructs a type where the value can be any type, or `null`. * * @template T - Value type */ declare type Nullable<T> = T | null; export { type Nullable as default };