import { And } from './And'; import { Matches } from '../type/Matches'; /** * Checks whether a string bool has an interminate result, that is, `'1' | '0'`. */ export type Indeterminate = And< Matches<'0', T>, Matches<'1', T> >;