xwt
2025-06-27 0d3eadb50310ca60b8871e967e64da01aa25a9ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 readonly onQueueEmpty;
    private count;
    constructor(onQueueEmpty: OnQueueEmptyCallback);
    enqueue(): void;
    dequeue(error: Error | null, output: WalkerState): void;
}
export {};