bpms_site/.svn/pristine/bd/bd7ff15d626dd894ca4e32b65c39454984ebc257.svn-base
2025-11-02 16:38:49 +03:30

9 lines
223 B
Plaintext

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