UNPKG

@flex-development/tutils

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