@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 377 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Get Frames from Image
* @section Content Types > Photos & Video > GIFs
* @icon GIF
*
* Splits an animated GIF or a photo burst into individual frames.
*
* ```js
* getFramesFromImage();
* ```
*/
declare const getFramesFromImage: () => WFWorkflowAction;
export default getFramesFromImage;