UNPKG

@flex-development/tutils

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