@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 353 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Trim Media
* @section Content Types > Photos & Video > Video
* @icon QuickTime
*
* Presents a view allowing you to trim the media passed into the action.
*
* ```js
* trimMedia();
* ```
*/
declare const trimMedia: () => WFWorkflowAction;
export default trimMedia;