UNPKG

@skybloxsystems/ticket-bot

Version:
8 lines (7 loc) 287 B
export declare type RunFunction = () => Promise<unknown>; export interface Queue<Element, Options> { size: number; filter: (options: Partial<Options>) => Element[]; dequeue: () => Element | undefined; enqueue: (run: Element, options?: Partial<Options>) => void; }