UNPKG

tar-iterator

Version:

Extract contents from tar archive type using an iterator API using streams or paths. Use stream interface and pipe transforms to add decompression algorithms

6 lines (5 loc) 370 B
export { DirectoryEntry, type Entry, type ExtractOptions, LinkEntry, SymbolicLinkEntry } from 'extract-base-iterator'; export { default as FileEntry } from './FileEntry.js'; export type { default as Lock } from './lib/Lock.js'; import type { Entry } from 'extract-base-iterator'; export type EntryCallback = (error?: Error, result?: IteratorResult<Entry>) => undefined;