interface CreateReadStreamOptions {
    autoClose?: boolean;
    emitClose?: boolean;
    encoding?: null | BufferEncoding;
    end?: number;
    highWaterMark?: number;
    signal?: AbortSignal;
    start?: number;
}

Hierarchy (View Summary)

Properties

autoClose?: boolean
emitClose?: boolean
encoding?: null | BufferEncoding
end?: number
highWaterMark?: number
signal?: AbortSignal

When provided the corresponding AbortController can be used to cancel an asynchronous action.

start?: number