UNPKG

@flex-development/tutils

Version:
12 lines (9 loc) 189 B
/** * @file Type Definitions - NIL * @module tutils/types/nil */ /** * Type representing a `null` or `undefined` value. */ type NIL = null | undefined export { type NIL as default }