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.

27 lines (26 loc) 789 B
export declare const DESCRIPTION = "Generates one or more words|sentences|paragraphs"; export declare const USAGE = "3 words [options]"; /** * An object containing the clipboard copy commands for different platforms. * * - `DARWIN`: Command for macOS (`pbcopy`). * - `LINUX`: Command for Linux (`xclip -selection clipboard`). * - `WIN32`: Command for Windows (`clip`). */ export declare const COPY: { DARWIN: string; LINUX: string; WIN32: string; }; export declare const CANNOT_DETERMINE_PLATFORM = "Could not determine host operating system."; declare const _default: { DESCRIPTION: string; USAGE: string; COPY: { DARWIN: string; LINUX: string; WIN32: string; }; CANNOT_DETERMINE_PLATFORM: string; }; export default _default;