UNPKG

hackpro-sdk

Version:
10 lines (9 loc) 411 B
/// <reference types="node" /> import { SourceDestination } from './source-destination'; export declare class SingleUseStreamSource extends SourceDestination { private stream; private used; constructor(stream: NodeJS.ReadableStream); canCreateReadStream(): Promise<boolean>; createReadStream(_emitProgress?: boolean, start?: number, end?: number): Promise<NodeJS.ReadableStream>; }