@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 348 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Get Clipboard
* @section Content Types > Sharing > Clipboard
* @icon Clipboard
*
* Passes the contents of the clipboard to the next action.
*
* ```js
* getClipboard();
* ```
*/
declare const getClipboard: () => WFWorkflowAction;
export default getClipboard;