UNPKG

@flex-development/tutils

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