Rocky_Mountain_Vending/.pnpm-store/v10/files/38/9963cbce6895d0e921ec986d925bd543ac1e365080634686dec841ccedd4a0c7a238aa59048bcbf15ddb262df9a2f52c0b0d3d22fa05c0c4f476f1a8f1c3ec
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

7 lines
453 B
Text

import type { BaseNextRequest } from '../../../../server/base-http';
import type { ProxyMatcher } from '../../../../build/analysis/get-page-static-info';
import type { Params } from '../../../../server/request/params';
export interface MiddlewareRouteMatch {
(pathname: string | null | undefined, request: BaseNextRequest, query: Params): boolean;
}
export declare function getMiddlewareRouteMatcher(matchers: ProxyMatcher[]): MiddlewareRouteMatch;