UNPKG

@phosphor/domutils

Version:
12 lines (11 loc) 268 B
/** * The namespace for clipboard related functionality. */ export declare namespace ClipboardExt { /** * Copy text to the system clipboard. * * @param text - The text to copy to the clipboard. */ function copyText(text: string): void; }