Clipboard operations interface exposed to the renderer process.
Provides methods to write text to the system clipboard.
Source
interfaceElectronClipboard { /** * Writes text to the system clipboard. * @paramtext - Text content to write to clipboard. * @returns Promise that resolves when text is written. * @source */ writeText: (text: string) =>Promise<void>; }
Clipboard operations interface exposed to the renderer process. Provides methods to write text to the system clipboard.
Source