@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines • 639 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const utils_1 = require("../utils");
/**
* @action Get My Shortcuts
* @section Actions > Scripting > Shortcuts
* @icon Shortcuts
*
* Gets the shortcuts stored on this device. For example, you could use this action with the Make Archive action to zip up your shortcuts.
*
* ```js
* getMyShortcuts();
* ```
*/
const getMyShortcuts = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.getmyworkflows',
WFWorkflowActionParameters: {},
});
exports.default = utils_1.withActionOutput(getMyShortcuts);
//# sourceMappingURL=getMyShortcuts.js.map