mirror of
https://github.com/sern-handler/website
synced 2026-06-27 10:12:23 +00:00
feat: migrate to starlight
This commit is contained in:
7
node_modules/p-queue/dist/queue.d.ts
generated
vendored
Normal file
7
node_modules/p-queue/dist/queue.d.ts
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
export type RunFunction = () => Promise<unknown>;
|
||||
export type Queue<Element, Options> = {
|
||||
size: number;
|
||||
filter: (options: Readonly<Partial<Options>>) => Element[];
|
||||
dequeue: () => Element | undefined;
|
||||
enqueue: (run: Element, options?: Partial<Options>) => void;
|
||||
};
|
||||
Reference in New Issue
Block a user