interface PipeableStream {
    abort: ((reason?) => void);
    pipe: (<Writable>(destination) => Writable);
}

Properties

Properties

abort: ((reason?) => void)

Type declaration

    • (reason?): void
    • Parameters

      • Optional reason: unknown

      Returns void

pipe: (<Writable>(destination) => Writable)

Type declaration