@lou.codes/types
Version:
🏷️ Lou's Code shared types
15 lines (14 loc) • 338 B
TypeScript
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;