UNPKG

268 BTypeScriptView Raw
1/**
2 * The namespace for clipboard related functionality.
3 */
4export declare namespace ClipboardExt {
5 /**
6 * Copy text to the system clipboard.
7 *
8 * @param text - The text to copy to the clipboard.
9 */
10 function copyText(text: string): void;
11}