UNPKG

@flex-development/tutils

Version:
10 lines (9 loc) 245 B
/** * @file Type Definitions - NullishBoolean * @module tutils/types/NullishBoolean */ /** * Type representing any boolean that can also be `null`. */ declare type NullishBoolean = boolean | null; export { type NullishBoolean as default };