UNPKG

@flex-development/tutils

Version:
12 lines (11 loc) 233 B
/** * @file Type Definitions - OrNull * @module tutils/types/OrNull */ /** * Type representing a value that also be `null`. * * @template T - Value type */ declare type OrNull<T> = T | null; export { type OrNull as default };