UNPKG

@flex-development/tutils

Version:
12 lines (9 loc) 236 B
/** * @file Type Definitions - Booleanish * @module tutils/types/Booleanish */ /** * Boolean and string values representing `true` or `false`. */ type Booleanish = boolean | 'false' | 'true' export { type Booleanish as default }