node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

15
server/node_modules/os-paths/dist/cjs/mod.cjs.d.ts generated vendored Normal file
View File

@@ -0,0 +1,15 @@
/** `OSPaths` (API) Determine common OS/platform paths (home, temp, ...) */
interface OSPaths {
/** Create an `OSPaths` object (a preceding `new` is optional). */
(): OSPaths;
/** Create an `OSPaths` object (`new` is optional). */
new (): OSPaths;
/** Returns the path string of the user's home directory (or `undefined` if the user's home directory is not resolvable). */
home(): string | undefined;
/** Returns the path string of the system's default directory for temporary files. */
temp(): string;
}
declare const _default: OSPaths;
export = _default;