# Installation
> `npm install --save @types/inflight`

# Summary
This package contains type definitions for inflight (https://github.com/isaacs/inflight).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/inflight.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/inflight/index.d.ts)
````ts
declare function inflight<A extends unknown[], R>(
    key: string | number | symbol,
    cb: (...args: A) => R,
): ((...args: A) => R) | null;

export = inflight;

````

### Additional Details
 * Last updated: Tue, 07 Nov 2023 03:09:37 GMT
 * Dependencies: none

# Credits
These definitions were written by [Tristan F.](https://github.com/LeoDog896).
