@flex-development/tutils
Version:
TypeScript utilities
15 lines (11 loc) • 303 B
text/typescript
/**
* @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 }