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>
10 lines
663 B
Text
10 lines
663 B
Text
import type { FileReader } from './helpers/file-reader/file-reader';
|
|
import { AppPageRouteMatcher } from '../../route-matchers/app-page-route-matcher';
|
|
import { FileCacheRouteMatcherProvider } from './file-cache-route-matcher-provider';
|
|
export declare class DevAppPageRouteMatcherProvider extends FileCacheRouteMatcherProvider<AppPageRouteMatcher> {
|
|
private readonly expression;
|
|
private readonly normalizers;
|
|
private readonly isTurbopack;
|
|
constructor(appDir: string, extensions: ReadonlyArray<string>, reader: FileReader, isTurbopack: boolean);
|
|
protected transform(files: ReadonlyArray<string>): Promise<ReadonlyArray<AppPageRouteMatcher>>;
|
|
}
|