@types/end-of-stream
TypeScript icon, indicating that this package has built-in type declarations

1.4.4 • Public • Published

Installation

npm install --save @types/end-of-stream

Summary

This package contains type definitions for end-of-stream (https://github.com/mafintosh/end-of-stream).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/end-of-stream.

index.d.ts

/// <reference types="node"/>

interface Options {
    readable?: boolean | undefined;
    writable?: boolean | undefined;
    error?: boolean | undefined;
}
type Stream = NodeJS.ReadableStream | NodeJS.WritableStream;
type Callback = (error?: Error | null) => void;
declare function eos(
    stream: Stream,
    callback?: Callback,
): () => void;
declare function eos(
    stream: Stream,
    options: Options,
    callback?: Callback,
): () => void;
declare namespace eos {
}
export = eos;

Additional Details

  • Last updated: Mon, 06 Nov 2023 22:41:05 GMT
  • Dependencies: @types/node

Credits

These definitions were written by Sami Kukkonen.

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i @types/end-of-stream

    Weekly Downloads

    40,558

    Version

    1.4.4

    License

    MIT

    Unpacked Size

    3.63 kB

    Total Files

    5

    Last publish

    Collaborators

    • types