UNPKG

@zhengxs/wechaty-plugin-assistant

Version:
8 lines (7 loc) 272 B
export 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; }