Skip to content

Documentation / base / Truthy

Type Alias: Truthy<T>

Truthy<T> = T extends false | 0 | "" | null | undefined | 0n ? never : T

Defined in: libs/base/src/utils.ts:499

Generic Truthy type

Type Parameters

T

T

Released under the MIT License.