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>
6 lines
475 B
Text
6 lines
475 B
Text
import type { RouteMatcher } from '../route-matchers/route-matcher';
|
|
import type { Manifest, ManifestLoader } from './helpers/manifest-loaders/manifest-loader';
|
|
import { CachedRouteMatcherProvider } from './helpers/cached-route-matcher-provider';
|
|
export declare abstract class ManifestRouteMatcherProvider<M extends RouteMatcher = RouteMatcher> extends CachedRouteMatcherProvider<M, Manifest | null> {
|
|
constructor(manifestName: string, manifestLoader: ManifestLoader);
|
|
}
|