UNPKG

patrick-mades-dev-tools

Version:

A collection of development tools and utilities Made by Patrick Made for Patrick Made (but feel free to use it for your own projects)

12 lines (11 loc) 326 B
/** * Clipboard Utilities * Functions for interacting with the system clipboard */ import { ClipboardResult } from '../../../types'; /** * Copy text to clipboard * @param text - The text to copy to clipboard * @returns Result of the operation */ export declare const copyToClipboard: (text: string) => ClipboardResult;