Files
Webklar.com/node_modules/next/dist/server/app-render/get-segment-param.d.ts
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

9 lines
223 B
TypeScript

import { DynamicParamTypes } from './types';
/**
* Parse dynamic route segment to type of parameter
*/
export declare function getSegmentParam(segment: string): {
param: string;
type: DynamicParamTypes;
} | null;