Read and write to the system clipboard.
Clears the clipboard.
Promise
<void
>
2.0.0
Source: https://github.com/tauri-apps/plugins-workspace/blob/v2/plugins/clipboard-manager/guest-js/index.ts#L124
Gets the clipboard content as Uint8Array image.
Promise
<Image
>
2.0.0
Source: https://github.com/tauri-apps/plugins-workspace/blob/v2/plugins/clipboard-manager/guest-js/index.ts#L88
Gets the clipboard content as plain text.
Promise
<string
>
2.0.0
Source: https://github.com/tauri-apps/plugins-workspace/blob/v2/plugins/clipboard-manager/guest-js/index.ts#L46
- Writes HTML or fallbacks to write provided plain text to the clipboard.
Parameter | Type |
---|
html | string |
altHtml ? | string |
Promise
<void
>
A promise indicating the success or failure of the operation.
2.0.0
Source: https://github.com/tauri-apps/plugins-workspace/blob/v2/plugins/clipboard-manager/guest-js/index.ts#L108
Writes image buffer to the clipboard.
Promise
<void
>
Writes plain text to the clipboard.
Parameter | Type |
---|
text | string |
opts ? | object |
opts.label ? | string |
Promise
<void
>
A promise indicating the success or failure of the operation.
2.0.0
Source: https://github.com/tauri-apps/plugins-workspace/blob/v2/plugins/clipboard-manager/guest-js/index.ts#L27
© 2024 Tauri Contributors. CC-BY / MIT