stronger-typed-streams
Version:
NodeJS Streams, but with stronger types
47 lines (46 loc) • 1.95 kB
TypeScript
/// <reference types="node" />
import * as NodeStream from 'stream';
export declare abstract class Readable<Out> extends NodeStream.Readable {
constructor(opts?: {});
abstract _read(size: number): any;
push(chunk: Out | null, encoding?: BufferEncoding): boolean;
pipe<NextDuplexOut>(destination: Duplex<Out, NextDuplexOut>, options?: {
end?: boolean;
}): Duplex<Out, NextDuplexOut>;
pipe<NextTransformOut>(destination: Transform<Out, NextTransformOut>, options?: {
end?: boolean;
}): Transform<Out, NextTransformOut>;
pipe(destination: Writable<Out>, options?: {
end?: boolean;
}): Writable<Out>;
}
export declare abstract class Duplex<In, Out> extends NodeStream.Duplex {
constructor(opts?: {});
push(chunk: Out | null, encoding?: BufferEncoding): boolean;
pipe<NextDuplexOut>(destination: Duplex<Out, NextDuplexOut>, options?: {
end?: boolean;
}): Duplex<Out, NextDuplexOut>;
pipe<NextTransformOut>(destination: Transform<Out, NextTransformOut>, options?: {
end?: boolean;
}): Transform<Out, NextTransformOut>;
pipe(destination: Writable<Out>, options?: {
end?: boolean;
}): Writable<Out>;
}
export declare class Transform<In, Out> extends NodeStream.Transform {
constructor(opts?: {});
push(chunk: Out | null, encoding?: BufferEncoding): boolean;
pipe<NextDuplexOut>(destination: Duplex<Out, NextDuplexOut>, options?: {
end?: boolean;
}): Duplex<Out, NextDuplexOut>;
pipe<NextTransformOut>(destination: Transform<Out, NextTransformOut>, options?: {
end?: boolean;
}): Transform<Out, NextTransformOut>;
pipe(destination: Writable<Out>, options?: {
end?: boolean;
}): Writable<Out>;
}
export declare abstract class Writable<In> extends NodeStream.Writable {
constructor(opts?: {});
abstract _write(chunk: In, encoding: BufferEncoding, callback: Function): void;
}