@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines (19 loc) • 394 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action URL
* @section Content Types > Web > URLs
* @icon URL
*
* Passes the specified URL to the next action.
*
* ```js
* URL({
* url: 'https://shortcuts.fun',
* });
* ```
*/
declare const URL: ({ url, }: {
/** The URL to set */
url?: string | undefined;
}) => WFWorkflowAction;
export default URL;