12345678910111213141516171819 |
- import type { Token } from 'next/dist/compiled/path-to-regexp';
- interface ParseResult {
- error?: any;
- parsedPath: string;
- regexStr?: string;
- route: string;
- tokens?: Token[];
- }
- export declare function tryToParsePath(route: string, options?: {
- handleUrl?: boolean;
- }): ParseResult;
- export {};
|