@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines • 613 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const utils_1 = require("../utils");
/**
* @action Select Phone Number
* @section Content Types > Contacts > Phone
* @icon PhoneNumber
*
* Prompts to pick a phone number from your contacts and passes the selection to the next action.
*
* ```js
* selectPhoneNumber();
* ```
*/
const selectPhoneNumber = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.selectphone',
WFWorkflowActionParameters: {},
});
exports.default = utils_1.withActionOutput(selectPhoneNumber);
//# sourceMappingURL=selectPhoneNumber.js.map