npm.io
0.0.33 • Published 2 years ago

@types/through

Licence
MIT
Version
0.0.33
Deps
1
Size
3 kB
Vulns
0
Weekly
0
Stars
51.3K

Installation

npm install --save @types/through

Summary

This package contains type definitions for through (https://github.com/dominictarr/through).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/through.

index.d.ts

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

import stream = require("stream");

declare function through(
    write?: (data: any) => void,
    end?: () => void,
    opts?: {
        autoDestroy: boolean;
    },
): through.ThroughStream;

declare namespace through {
    export interface ThroughStream extends stream.Transform {
        autoDestroy: boolean;
        queue: (chunk: any) => any;
    }
}

export = through;

Additional Details

  • Last updated: Tue, 07 Nov 2023 1536 GMT
  • Dependencies: @types/node

Credits

These definitions were written by Andrew Gaspar.