1.0.2 • Published 6 months ago

@types/promise-debounce v1.0.2

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

Installation

npm install --save @types/promise-debounce

Summary

This package contains type definitions for promise-debounce (https://github.com/jaz303/promise-debounce).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/promise-debounce.

index.d.ts

// Type definitions for promise-debounce 1.0
// Project: https://github.com/jaz303/promise-debounce
// Definitions by: ExE Boss <https://github.com/ExE-Boss>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/**
 * Returns a debounced version of `fn` with optional calling context `ctx`.
 *
 * `fn` must be a function which returns a promise.
 *
 * If `debounced` is called and no other call is currently pending,
 * `fn` will be called and its promise returned.
 *
 * Otherwise - if another call is pending - the original promise will be returned.
 */
declare function debounce<A extends readonly any[], R extends PromiseLike<any>, T = undefined>(
    fn: (this: T, ...args: A) => R,
    ctx?: T,
): (...args: A) => R;

export = debounce;

Additional Details

  • Last updated: Sat, 09 Oct 2021 20:31:18 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by ExE Boss.

1.0.2

6 months ago

1.0.1

7 months ago

1.0.0

3 years ago