Rocky_Mountain_Vending/.pnpm-store/v10/files/4d/5ae7dac76a4beaa2cb9c6548bc91f828fdb87145e5cf12024eac8c24049f4cd7bb95c536b313296bba4f24e332cba3dd5afde52f81fb158d7873c61ae06ca7
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

29 lines
989 B
Text

interface Options {
/**
* A transformer function that will be applied to the regexp generated
* from the provided path and path-to-regexp.
*/
regexModifier?: (regex: string) => string;
/**
* When true the function will remove all unnamed parameters
* from the matched parameters.
*/
removeUnnamedParams?: boolean;
/**
* When true the regexp won't allow an optional trailing delimiter
* to match.
*/
strict?: boolean;
/**
* When true the matcher will be case-sensitive, defaults to false
*/
sensitive?: boolean;
}
export type PatchMatcher = (pathname: string, params?: Record<string, any>) => Record<string, any> | false;
/**
* Generates a path matcher function for a given path and options based on
* path-to-regexp. By default the match will be case insensitive, non strict
* and delimited by `/`.
*/
export declare function getPathMatch(path: string, options?: Options): PatchMatcher;
export {};