test commit

This commit is contained in:
2025-06-19 07:13:31 +00:00
commit 9e9641ab5c
265 changed files with 185847 additions and 0 deletions

18
node_modules/fdir/dist/api/walker.d.ts generated vendored Normal file
View File

@@ -0,0 +1,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;
}