It appears you have a well-structured Git repository with various files, including SVG icons and HTML documents. Here's a brief overview:

This commit is contained in:
2025-06-11 09:05:15 +02:00
parent 36c2466e53
commit 6d6aa954dd
15556 changed files with 1076330 additions and 1 deletions

15
backend/node_modules/hard-rejection/index.d.ts generated vendored Normal file
View File

@ -0,0 +1,15 @@
declare const hardRejection: {
/**
Make unhandled promise rejections fail hard right away instead of the default [silent fail](https://gist.github.com/benjamingr/0237932cee84712951a2).
@param log - Custom logging function to print the rejected promise. Receives the error stack. Default: `console.error`.
*/
(log?: (stack?: string) => void): void;
// TODO: Remove this for the next major release, refactor the whole definition to:
// declare function hardRejection(log?: (stack?: string) => void): void;
// export = hardRejection;
default: typeof hardRejection;
};
export = hardRejection;