UNPKG

ts-comply

Version:

TypeTools is a Typescript library for providing extensible tooling runtime validations and type helpers.

8 lines (6 loc) 177 B
/* Firestack (c) 2020, License: MIT */ /** * Either string or truthy/falsey values * e.g. true, false, 0, 1, 'on', null */ export type BoolLike = boolean | number | string;