@types/p-fifo
Version:
TypeScript definitions for p-fifo
28 lines (21 loc) • 730 B
Markdown
# Installation
> `npm install --save @types/p-fifo`
# Summary
This package contains type definitions for p-fifo (https://github.com/alanshaw/p-fifo).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/p-fifo.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/p-fifo/index.d.ts)
````ts
export = PFifo;
declare class PFifo<T> {
constructor();
push(chunk: T): Promise<void>;
shift(): Promise<T>;
isEmpty(): boolean;
}
````
### Additional Details
* Last updated: Tue, 07 Nov 2023 09:09:39 GMT
* Dependencies: none
# Credits
These definitions were written by [Junxiao Shi](https://github.com/yoursunny).