1.1.2 • Published 6 months ago

@types/valvelet v1.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/valvelet

Summary

This package contains type definitions for valvelet (https://github.com/lpinca/valvelet).

Details

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

index.d.ts

// Type definitions for valvelet 1.1
// Project: https://github.com/lpinca/valvelet
// Definitions by: BendingBender <https://github.com/bendingbender>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

export = valvelet;

/**
 * Limits the execution rate of a function.
 *
 * It is useful for scenarios such as REST APIs consumption where the amount of requests per unit of time
 * should not exceed a given threshold.
 *
 * @param fn The function to rate limit calls to.
 * @param limit The maximum number of allowed calls per `interval`.
 * @param interval The timespan where `limit` is calculated.
 * @param size The maximum size of the internal queue. Defaults to `2^32 - 1` which is the maximum array size in JavaScript.
 * @returns A function that returns a promise which resolves to the value returned by the original fn function.
 *          When the internal queue is at capacity the returned promise is rejected.
 *
 * @example
 * import valvelet = require('valvelet');
 *
 * const get = valvelet(
 *   function request(i: number): Promise<string> {
 *     return Promise.resolve(`${i} - ${new Date().toISOString()}`);
 *   },
 *   2,
 *   1000
 * );
 *
 * function log(data: any) {
 *   console.log(data);
 * }
 *
 * for (let i = 0; i < 10; i++) {
 *   get(i).then(log);
 * }
 *
 * // 0 - 2016-06-02T20:07:33.843Z
 * // 1 - 2016-06-02T20:07:33.844Z
 * // 2 - 2016-06-02T20:07:34.846Z
 * // 3 - 2016-06-02T20:07:34.846Z
 * // 4 - 2016-06-02T20:07:35.846Z
 * // 5 - 2016-06-02T20:07:35.846Z
 * // 6 - 2016-06-02T20:07:36.848Z
 * // 7 - 2016-06-02T20:07:36.848Z
 * // 8 - 2016-06-02T20:07:37.851Z
 * // 9 - 2016-06-02T20:07:37.851Z
 */
declare function valvelet<TFn extends (...args: any[]) => unknown>(
    fn: TFn,
    limit: number,
    interval: number,
    size?: number,
): (
    ...args: Parameters<TFn>
) => ReturnType<TFn> extends PromiseLike<infer TRetVal> ? Promise<TRetVal> : Promise<ReturnType<TFn>>;

Additional Details

  • Last updated: Sun, 24 Oct 2021 19:31:21 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by BendingBender.

1.1.1

7 months ago

1.1.2

6 months ago

1.1.0

3 years ago