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

0.4.33 • Public • Published

Installation

npm install --save @types/each

Summary

This package contains type definitions for each (http://www.adaltas.com/projects/node-each/).

Details

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

index.d.ts

interface Each {
    paused: boolean;
    readable: boolean;
    started: number;
    done: number;
    total: number;
    on(eventName: string, onCallback: Function): Each;
    on(eventName: "item", onItem: (item: any, next: (error?: Error) => void) => void): Each;
    on(eventName: "error", onError: (error: Error[]) => void): Each;
    on(eventName: "error", onError: (error: Error) => void): Each;
    on(eventName: "both", onBoth: (error?: Error[]) => void): Each;
    on(eventName: "end", onEnd: () => void): Each;
    parallel(mode: number): Each;
    parallel(mode: boolean): Each;
    shift(items: any[]): void;
    write(items: any[]): void;
    unshift(items: any[]): void;
    end(): Each;
    times(): Each;
    repeat(): Each;
    sync(): Each;
    files(glob: any): void;
    files(base: any, glob: any): void;
}

interface EachStatic {
    (array: any[]): Each;
}

declare var each: EachStatic;

declare module "each" {
    export = each;
}

Additional Details

  • Last updated: Mon, 06 Nov 2023 22:41:05 GMT
  • Dependencies: none

Credits

These definitions were written by Michael Zabka.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/each

Weekly Downloads

36

Version

0.4.33

License

MIT

Unpacked Size

4.42 kB

Total Files

5

Last publish

Collaborators

  • types