Narrows the given type parameter T to all its falsy sub-types.
T
The original type to narrow.
import type {Falsy} from '@augment-vir/assert';type MyFalsy = Falsy<string | number>; // "" | 0 Copy
import type {Falsy} from '@augment-vir/assert';type MyFalsy = Falsy<string | number>; // "" | 0
@augment-vir/assert
Narrows the given type parameter
T
to all its falsy sub-types.