UNPKG

@jovian/type-tools

Version:

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

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