@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 323 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Call
* @section Content Types > Contacts > Phone
* @icon PhoneNumber
*
* Call the contact, the text, place or phone number given as input.
*
* ```js
* call();
* ```
*/
declare const call: () => WFWorkflowAction;
export default call;