wilddragon-site/node_modules/next/dist/server/route-modules/app-route/helpers/parsed-url-query-to-params.d.ts
2026-04-17 15:51:01 -04:00

8 lines
273 B
TypeScript
Executable file

import type { ParsedUrlQuery } from 'querystring';
/**
* Converts the query into params.
*
* @param query the query to convert to params
* @returns the params
*/
export declare function parsedUrlQueryToParams(query: ParsedUrlQuery): Record<string, string | string[]>;