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

25
server/node_modules/xdg-portable/dist/cjs/mod.cjs.d.ts generated vendored Normal file
View File

@@ -0,0 +1,25 @@
/** `XDG` (API) Determine XDG Base Directory paths (OS/platform portable). */
interface XDG {
/** Create an `XDG` object (a preceding `new` is optional). */
(): XDG;
/** Create an `XDG` object (`new` is optional). */
new (): XDG;
/** Returns the directory path for user-specific non-essential (ie, cached) data files. */
cache(): string;
/** Returns the directory path for user-specific configuration files. */
config(): string;
/** Returns directory path for user-specific data files. */
data(): string;
/** Returns the directory path for user-specific non-essential runtime files (such as sockets, named pipes, etc); may be `undefined`. */
runtime(): string | undefined;
/** Returns the directory path for user-specific state files (non-essential and more volatile than configuration files). */
state(): string;
/** Returns a preference-ordered array of base directory paths to search for configuration files (includes `.config()` directory as first entry). */
configDirs(): readonly string[];
/** Returns a preference-ordered array of base directory paths to search for data files (includes `.data()` directory as first entry). */
dataDirs(): readonly string[];
}
declare const _default: XDG;
export = _default;