5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-06 17:01:33 +08:00
wails/v3/internal/runtime/desktop/api/clipboard.js
2023-06-24 12:11:48 +10:00

32 lines
669 B
JavaScript

/*
_ __ _ __
| | / /___ _(_) /____
| | /| / / __ `/ / / ___/
| |/ |/ / /_/ / / (__ )
|__/|__/\__,_/_/_/____/
The electron alternative for Go
(c) Lea Anthony 2019-present
*/
/* jshint esversion: 9 */
/**
* The Clipboard API provides methods to interact with the system clipboard.
*/
export const Clipboard = {
/**
* Gets the text from the clipboard
* @returns {Promise<string>}
*/
Text: () => {
return wails.Clipboard.Text();
},
/**
* Sets the text on the clipboard
* @param {string} text - text to set in the clipboard
*/
SetText: (text) => {
return wails.Clipboard.SetText(text);
},
};