@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 462 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @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();
* ```
*/
declare const extractArchive: () => WFWorkflowAction;
export default extractArchive;