/* 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;