lingjing/node_modules/next/dist/server/route-modules/app-route/helpers/parsed-url-query-to-params.d.ts
2026-02-23 09:51:43 +00:00

9 lines
273 B
TypeScript

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[]>;