UNPKG

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.

21 lines (20 loc) 537 B
/** * Represents the unit type for words. */ export declare const UNIT_WORDS = "words"; /** * Represents the unit type for sentences. */ export declare const UNIT_SENTENCES = "sentences"; /** * Represents the unit type for paragraphs. */ export declare const UNIT_PARAGRAPHS = "paragraphs"; /** * An array of supported unit types for generating text. */ export declare const UNITS: string[]; /** * Type representing the supported unit types for generating text. */ export type LoremUnit = "words" | "sentences" | "paragraphs";