Rocky_Mountain_Vending/.pnpm-store/v10/files/be/d9d1de35e91319a924eaf3fd8bdc7bb75e3b5ffca71ed8118396d4857c58e0e54e343d34c5641d3646a4f747dfb11a3db0e13f82bc553cfc950dc66a88355e
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

9 lines
333 B
Text

import type { MatchFn, MatchValueCallback } from "../types.js";
export interface BuildMatchPatternFnArgs<Result> {
matchPattern: RegExp;
parsePattern: RegExp;
valueCallback?: MatchValueCallback<string, Result>;
}
export declare function buildMatchPatternFn<Result>(
args: BuildMatchPatternFnArgs<Result>,
): MatchFn<Result>;