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.

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