@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
19 lines • 449 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @action Call
* @section Content Types > Contacts > Phone
* @icon PhoneNumber
*
* Call the contact, the text, place or phone number given as input.
*
* ```js
* call();
* ```
*/
const call = () => ({
WFWorkflowActionIdentifier: 'com.apple.mobilephone.call',
WFWorkflowActionParameters: {},
});
exports.default = call;
//# sourceMappingURL=call.js.map