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

1.2.2 • Public • Published

Installation

npm install --save @types/hasbin

Summary

This package contains type definitions for hasbin (https://github.com/springernature/hasbin).

Details

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

index.d.ts

export = hasbin;

declare function hasbin(bin: string, done: (result: boolean) => void): void;

declare namespace hasbin {
    function all(bins: string[], done: (result: boolean) => void): void;

    function any(bins: string[], done: (result: boolean) => void): void;

    function every(bins: string[], done: (result: boolean) => void): void;

    function first(bins: string[], done: (result: false | string) => void): void;

    function some(bins: string[], done: (result: boolean) => void): void;

    function async(bin: string, done: (result: boolean) => void): void;

    function sync(bin: string): boolean;

    namespace all {
        function sync(bins: string[]): boolean;
    }

    namespace any {
        function sync(bins: string[]): boolean;
    }

    namespace every {
        function sync(bins: string[]): boolean;
    }

    namespace first {
        function sync(bins: string[]): false | string;
    }

    namespace some {
        function sync(bins: string[]): boolean;
    }
}

Additional Details

  • Last updated: Tue, 07 Nov 2023 03:09:37 GMT
  • Dependencies: none

Credits

These definitions were written by Micha Streppel.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/hasbin

Weekly Downloads

1,231

Version

1.2.2

License

MIT

Unpacked Size

4.55 kB

Total Files

5

Last publish

Collaborators

  • types