UNPKG

@flex-development/tutils

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