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:
24
node_modules/stringify-entities/lib/index.d.ts
generated
vendored
Normal file
24
node_modules/stringify-entities/lib/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
/**
|
||||
* Encode special characters in `value`.
|
||||
*
|
||||
* @param {string} value
|
||||
* Value to encode.
|
||||
* @param {Options} [options]
|
||||
* Configuration.
|
||||
* @returns {string}
|
||||
* Encoded value.
|
||||
*/
|
||||
export function stringifyEntities(value: string, options?: Options | undefined): string;
|
||||
/**
|
||||
* Encode special characters in `value` as hexadecimals.
|
||||
*
|
||||
* @param {string} value
|
||||
* Value to encode.
|
||||
* @param {LightOptions} [options]
|
||||
* Configuration.
|
||||
* @returns {string}
|
||||
* Encoded value.
|
||||
*/
|
||||
export function stringifyEntitiesLight(value: string, options?: import("./core.js").CoreOptions | undefined): string;
|
||||
export type Options = import('./core.js').CoreOptions & import('./util/format-smart.js').FormatSmartOptions;
|
||||
export type LightOptions = import('./core.js').CoreOptions;
|
Reference in New Issue
Block a user