UNPKG

next

Version:

The React Framework

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