Refactor routing in App component to enhance navigation and improve error handling by integrating dynamic routes and updating the NotFound route.

This commit is contained in:
becarta
2025-05-23 12:43:00 +02:00
parent f40db0f5c9
commit a544759a3b
11127 changed files with 1647032 additions and 0 deletions

44
node_modules/oniguruma-to-es/dist/cjs/subclass.d.ts generated vendored Normal file
View File

@@ -0,0 +1,44 @@
export type EmulatedRegExpOptions = {
strategy?: string | null;
useEmulationGroups?: boolean;
};
/**
@typedef {{
strategy?: string | null;
useEmulationGroups?: boolean;
}} EmulatedRegExpOptions
*/
/**
Works the same as JavaScript's native `RegExp` constructor in all contexts, but can be given
results from `toDetails` to produce the same result as `toRegExp`.
@augments RegExp
*/
export class EmulatedRegExp extends RegExp {
/**
@overload
@param {string} pattern
@param {string} [flags]
@param {EmulatedRegExpOptions} [options]
*/
constructor(pattern: string, flags?: string, options?: EmulatedRegExpOptions);
/**
@overload
@param {EmulatedRegExp} pattern
@param {string} [flags]
*/
constructor(pattern: EmulatedRegExp, flags?: string);
/**
Can be used to serialize the arguments used to create the instance.
@type {{
pattern: string;
flags: string;
options: EmulatedRegExpOptions;
}}
*/
rawArgs: {
pattern: string;
flags: string;
options: EmulatedRegExpOptions;
};
#private;
}