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.
13 lines (12 loc) • 331 B
TypeScript
/**
* 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;
};