UNPKG

extract-base-iterator

Version:

Base iterator for extract iterators like tar-iterator and zip-iterator

4 lines (3 loc) 223 B
import { type BigIntStats, type Stats } from 'fs'; export type Callback = (err: NodeJS.ErrnoException | null, stats?: Stats | BigIntStats) => void; export default function lstatReal(path: string, callback: Callback): void;