UNPKG

@joshfarrant/shortcuts-js

Version:
20 lines (19 loc) 394 B
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;