Rocky_Mountain_Vending/.pnpm-store/v10/files/e2/3683ff6b316cdfffa9edbf0c3c9ec2c85e3a04b10da9e565345ad5450b4675e58a16cb06359ff015e8b0557631a9b9158920e22b95eced332b9ebf33379f29
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

6 lines
269 B
Text

import type { Manifest, ManifestLoader } from './manifest-loader';
export declare class ServerManifestLoader implements ManifestLoader {
private readonly getter;
constructor(getter: (name: string) => Manifest | null);
load(name: string): Manifest | null;
}