Your IP : 216.73.217.95


Current Path : /home/deltalab/PMS/logistic-backend/node_modules/@nestjs/common/file-stream/
Upload File :
Current File : //home/deltalab/PMS/logistic-backend/node_modules/@nestjs/common/file-stream/streamable-file.d.ts

/// <reference types="node" />
import { Readable } from 'stream';
import { StreamableFileOptions } from './streamable-options.interface';
export declare class StreamableFile {
    readonly options: StreamableFileOptions;
    private readonly stream;
    constructor(buffer: Uint8Array, options?: StreamableFileOptions);
    constructor(readable: Readable, options?: StreamableFileOptions);
    getStream(): Readable;
    getHeaders(): {
        type: string;
        disposition: string;
        length: number;
    };
}