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.

17 lines (16 loc) 426 B
/** * Represents the HTML format for generated text. */ export declare const FORMAT_HTML = "html"; /** * Represents the plain text format for generated text. */ export declare const FORMAT_PLAIN = "plain"; /** * An array of supported formats for generated text. */ export declare const FORMATS: string[]; /** * Type representing the supported formats for generated text. */ export type LoremFormat = "plain" | "html";