@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 410 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Share with Extensions
* @section Content Types > Sharing > System
* @icon Apps
*
* Prompts to share the input using action extensions and sharing extensions provided by other apps.
*
* ```js
* shareWithExtensions();
* ```
*/
declare const shareWithExtensions: () => WFWorkflowAction;
export default shareWithExtensions;