UNPKG

@flex-development/tutils

Version:
13 lines (12 loc) 261 B
/** * @file Type Definitions - OrNil * @module tutils/types/OrNil */ import type NIL from './nil.mjs'; /** * Type representing a value that also be `NIL`. * * @template T - Value type */ declare type OrNil<T> = NIL | T; export { type OrNil as default };