@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines • 612 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const utils_1 = require("../utils");
/**
* @action Select Email Address
* @section Content Types > Contacts > Mail
* @icon Mail
*
* Prompts to pick an email address from your contacts and passes the selection to the next action.
*
* ```js
* selectEmailAddress();
* ```
*/
const selectEmailAddress = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.selectemail',
WFWorkflowActionParameters: {},
});
exports.default = utils_1.withActionOutput(selectEmailAddress);
//# sourceMappingURL=selectEmailAddress.js.map