- MANUAL-PRODUTO.md: Manual do usuário final - MANUAL-VENDAS.md: Estratégia comercial e vendas - MANUAL-TECNICO.md: Infraestrutura e deploy - README.md: Visão geral do projeto
9 lines
228 B
TypeScript
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;
|