UNPKG

@joshfarrant/shortcuts-js

Version:
23 lines 494 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * @action URL * @section Content Types > Web > URLs * @icon URL * * Passes the specified URL to the next action. * * ```js * URL({ * url: 'https://shortcuts.fun', * }); * ``` */ const URL = ({ url = '', }) => ({ WFWorkflowActionIdentifier: 'is.workflow.actions.url', WFWorkflowActionParameters: { WFURLActionURL: url, }, }); exports.default = URL; //# sourceMappingURL=URL.js.map