installed three and vite

This commit is contained in:
2025-07-26 21:17:11 +01:00
parent c627c1213a
commit 3013941329
1364 changed files with 804902 additions and 0 deletions

15
node_modules/fdir/dist/api/queue.d.ts generated vendored Normal file
View File

@@ -0,0 +1,15 @@
import { WalkerState } from "../types";
type OnQueueEmptyCallback = (error: Error | null, output: WalkerState) => void;
/**
* This is a custom stateless queue to track concurrent async fs calls.
* It increments a counter whenever a call is queued and decrements it
* as soon as it completes. When the counter hits 0, it calls onQueueEmpty.
*/
export declare class Queue {
private onQueueEmpty?;
count: number;
constructor(onQueueEmpty?: OnQueueEmptyCallback | undefined);
enqueue(): number;
dequeue(error: Error | null, output: WalkerState): void;
}
export {};