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