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 fs from "fs";
import { WalkerState, Options } from "../../types";
export type ResolveSymlinkFunction = (path: string, state: WalkerState, callback: (stat: fs.Stats, path: string) => void) => void;
export declare function build(options: Options, isSynchronous: boolean): ResolveSymlinkFunction | null;