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

View File

@@ -0,0 +1,5 @@
/// <reference types="node" />
import { WalkerState } from "../../types";
import fs from "fs";
export type WalkDirectoryFunction = (state: WalkerState, crawlPath: string, directoryPath: string, depth: number, callback: (entries: fs.Dirent[], directoryPath: string, depth: number) => void) => void;
export declare function build(isSynchronous: boolean): WalkDirectoryFunction;