UNPKG

@ethersphere/bee-js

Version:
11 lines (10 loc) 312 B
/// <reference types="node" /> import { PassThrough } from 'stream'; export declare class TarStream { output: PassThrough; currentFileSize: number; beginFile(path: string, size: number): void; appendFile(data: Uint8Array): Promise<void>; endFile(): Promise<void>; end(): Promise<void>; }