NeahFront3/node_modules/next/dist/server/app-render/get-segment-param.d.ts
2025-04-09 18:02:58 +02:00

9 lines
228 B
TypeScript

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