@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 426 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Delete Photos
* @section Content Types > Photos & Video > Photos
* @icon Photos
*
* Deletes the photos passed as input from the device's photo library. This action asks for confirmation before performing the deletion.
*
* ```js
* deletePhotos();
* ```
*/
declare const deletePhotos: () => WFWorkflowAction;
export default deletePhotos;