@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 460 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Get Images from Input
* @section Content Types > Photos & Video > Images
* @icon Image
*
* Gets images from the result of the previous action. For example, this action can get the album art of a song, or all the images on a web page.
*
* ```js
* getImagesFromInput();
* ```
*/
declare const getImagesFromInput: () => WFWorkflowAction;
export default getImagesFromInput;