UNPKG

@camunda8/sdk

Version:

[![NPM](https://nodei.co/npm/@camunda8/sdk.png)](https://www.npmjs.com/package/@camunda8/sdk)

9 lines (8 loc) 189 B
export declare class Queue<T> { private q; push: (element: T) => number; pop: () => T | undefined; isEmpty: () => boolean; drain: () => T[]; length: () => number; }