xwt
2025-06-27 0d3eadb50310ca60b8871e967e64da01aa25a9ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { ResultCallback, Options } from "../types";
import { Output } from "../types";
export declare class Walker<TOutput extends Output> {
    private readonly root;
    private readonly isSynchronous;
    private readonly state;
    private readonly joinPath;
    private readonly pushDirectory;
    private readonly pushFile;
    private readonly getArray;
    private readonly groupFiles;
    private readonly resolveSymlink;
    private readonly walkDirectory;
    private readonly callbackInvoker;
    constructor(root: string, options: Options, callback?: ResultCallback<TOutput>);
    start(): TOutput | null;
    private walk;
}