vegan-ipsum
Version:
Generates passages of vegan-themed placeholder text suitable for use in web pages, graphics, and more. Works in the browser, NodeJS, and React Native.
11 lines (10 loc) • 347 B
TypeScript
/**
* An object containing regular expressions for validating formats and units.
*
* - `FORMATS`: Matches supported text formats (`plain` or `html`), case-insensitive.
* - `UNITS`: Matches supported unit types (`paragraphs`, `sentences`, `words`), case-insensitive.
*/
export declare const REGEX: {
FORMATS: RegExp;
UNITS: RegExp;
};