@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
19 lines • 597 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @action Extract Archive
* @section Content Types > Documents > Archives
* @icon Documents
*
* Extracts files from the archive passed as input. Many archive formats are supported, including zip, rar, tar.gz, tar.bz2, tar, gzip, cpio, cab, and iso archives.
*
* ```js
* extractArchive();
* ```
*/
const extractArchive = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.unzip',
WFWorkflowActionParameters: {},
});
exports.default = extractArchive;
//# sourceMappingURL=extractArchive.js.map