@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines (19 loc) • 647 B
TypeScript
import WFSerialization from '../interfaces/WF/WFSerialization';
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action FaceTime
* @section Content Types > Contacts > Phone
* @icon FaceTime
*
* Facetime the contact, the text, place or phone number given as input.
*
* ```js
* facetime({}); // Default type is Video
* facetime({ type: askWhenRun }); // type could be 'Audio' or 'Video'
* ```
*/
declare const facetime: ({ type, }: {
/** Define the type to use for the FaceTime. Default to 'Video' */
type?: WFSerialization | "Audio" | "Video" | undefined;
}) => WFWorkflowAction;
export default facetime;