Excludes all Falsy values of the given Type.
Type to represent all values of the given Type that are not Falsy. If all types are Falsy, the result is never.
never
Truthy<"" | "truthy">; // "truthy" Copy
Truthy<"" | "truthy">; // "truthy"
Falsy
Type to exclude Falsy values from.
Excludes all Falsy values of the given Type.
Remarks
Type to represent all values of the given Type that are not Falsy. If all types are Falsy, the result is
never
.Example
See
Falsy