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:
44
node_modules/oniguruma-to-es/dist/cjs/subclass.d.ts
generated
vendored
Normal file
44
node_modules/oniguruma-to-es/dist/cjs/subclass.d.ts
generated
vendored
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user