UNPKG

@lou.codes/types

Version:
15 lines (14 loc) 338 B
import type { EMPTY_STRING } from "@lou.codes/constants/empty.js"; /** * Empty string. * * @category String * @remarks * This type is a string with no characters on it (length `0`). * {@link EmptyString}. * @example * ```typescript * const emptyString: EmptyString = ""; * ``` */ export type EmptyString = typeof EMPTY_STRING;