@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines (19 loc) • 401 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Open App
* @section Content Types > Apps >
* @icon Apps
*
* Opens the specified app.
*
* ```js
* openApp({
* appId: 'com.christianselig.Apollo'
* });
* ```
*/
declare const openApp: ({ appId, }: {
/** The App identifier */
appId?: string | undefined;
}) => WFWorkflowAction;
export default openApp;