@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
19 lines • 566 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @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();
* ```
*/
const deletePhotos = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.deletephotos',
WFWorkflowActionParameters: {},
});
exports.default = deletePhotos;
//# sourceMappingURL=deletePhotos.js.map