Files
Camilou.fr/VUEJS/backend/node_modules/elysia/dist/parse-query.d.ts
T
Camilla Schoeser 6a71f91e2f ajout du site
2026-05-29 21:38:59 +02:00

16 lines
485 B
TypeScript

export declare function parseQueryFromURL(input: string, startIndex?: number, array?: {
[key: string]: 1;
}, object?: {
[key: string]: 1;
}): Record<string, string>;
/**
* @callback parse
* @param {string} input
*/
export declare function parseQueryStandardSchema(input: string, startIndex?: number): Record<string, string | string[]>;
/**
* @callback parse
* @param {string} input
*/
export declare function parseQuery(input: string): Record<string, string | string[]>;