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

5
node_modules/fdir/dist/api/functions/join-path.d.ts generated vendored Normal file
View File

@@ -0,0 +1,5 @@
import { Options, PathSeparator } from "../../types";
export declare function joinPathWithBasePath(filename: string, directoryPath: string): string;
export declare function joinDirectoryPath(filename: string, directoryPath: string, separator: PathSeparator): string;
export type JoinPathFunction = (filename: string, directoryPath: string) => string;
export declare function build(root: string, options: Options): JoinPathFunction;