Skip to main content
Module

x/rimbu/mod.ts>StringNonEmpty

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
type alias StringNonEmpty
import { type StringNonEmpty } from "https://deno.land/x/rimbu@0.13.1/mod.ts";

Accepts all strings with at least one character.

definition: T extends string ? "" extends T ? never : T : never