UNPKG

fast-extract

Version:

Extract contents from various archive types (tar, tar.bz2, tar.gz, tar.xz, tgz, zip)

4 lines (3 loc) 271 B
import type { Options, Source, SourceStats } from '../types.ts'; export type Callback = (error?: Error, stats?: SourceStats) => undefined; export default function sourceStats(source: Source, options: Options, endpoint: string | Callback, callback?: Callback): undefined;