Rocky_Mountain_Vending/.pnpm-store/v10/files/61/89797e40efbb1f26d27e34691e4f0fdaecce09521a43613a6ba5a7fffd59a40c07116082be5eee9a0685dc6b416f9b8247de7f33eee01bf072c26b3709e1e6
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
279 B
Text

import type { Manifest, ManifestLoader } from './manifest-loader';
export declare class NodeManifestLoader implements ManifestLoader {
private readonly distDir;
constructor(distDir: string);
static require(id: string): any;
load(name: string): Manifest | null;
}