UNPKG

@flex-development/tutils

Version:
12 lines (11 loc) 320 B
/** * @file Type Definitions - EmptyValue * @module tutils/types/EmptyValue */ import type EmptyString from './empty-string.mjs'; import type NIL from './nil.mjs'; /** * Type representing `null`, `undefined`, and empty strings. */ declare type EmptyValue = EmptyString | NIL; export { type EmptyValue as default };