fs-nextra
Version:
Node.js fs next-gen extra (nextra) methods.
13 lines (12 loc) • 343 B
TypeScript
/// <reference types="node" />
import { Stats } from 'fs';
import { Readable } from 'stream';
export declare class Tar extends Readable {
private base;
private written;
private recordSize;
private queue;
constructor(base: string);
_read(): Promise<void>;
append(filepath: string, stats: Stats): void;
}