3.0.4 • Published 6 months ago

@types/through2-map v3.0.4

Weekly downloads
1,074
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/through2-map

Summary

This package contains type definitions for through2-map (https://github.com/brycebaril/through2-map).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/through2-map.

index.d.ts

// Type definitions for through2-map 3.0
// Project: https://github.com/brycebaril/through2-map
// Definitions by: Lucas Hill <https://github.com/LucasHill>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

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

import through2 = require('through2');
import stream = require('stream');

type MapCallback = (chunk: any, index: number) => void;

interface Through2MapOptions extends stream.DuplexOptions {
    wantStrings?: boolean | undefined;
}

declare function through2_map(options?: Through2MapOptions, fn?: MapCallback): through2.Through2Constructor;
declare function through2_map(fn?: MapCallback): through2.Through2Constructor;

declare namespace through2_map {
    function ctor(options?: Through2MapOptions, fn?: MapCallback): through2.Through2Constructor;
    function ctor(fn?: MapCallback): through2.Through2Constructor;

    function obj(options?: Through2MapOptions, fn?: MapCallback): through2.Through2Constructor;
    function obj(fn?: MapCallback): through2.Through2Constructor;

    function objCtor(options?: Through2MapOptions, fn?: MapCallback): through2.Through2Constructor;
    function objCtor(fn?: MapCallback): through2.Through2Constructor;
}

export = through2_map;

Additional Details

Credits

These definitions were written by Lucas Hill.

3.0.4

6 months ago

3.0.3

7 months ago

3.0.2

8 months ago

3.0.1

3 years ago

3.0.0

7 years ago