UNPKG

@joshfarrant/shortcuts-js

Version:
15 lines (14 loc) 462 B
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;