Rocky_Mountain_Vending/.pnpm-store/v10/files/ed/67ce35875aff83ca7ebd96c37efc79600f8d90c303c506aab65671a75deb43915a84b5e6adbb286381ae3b197ec57508156fe4bbc1ab09bb6e1cdd9cf79f88
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

36 lines
789 B
Text

import type { Compiler } from '@rspack/core';
type Actions = {
[actionId: string]: {
workers: {
[name: string]: {
moduleId: string | number;
async: boolean;
};
};
layer: {
[name: string]: string;
};
};
};
export type ActionManifest = {
encryptionKey: string;
node: Actions;
edge: Actions;
};
export interface ModuleInfo {
moduleId: string | number;
async: boolean;
}
interface Options {
dev: boolean;
appDir: string;
isEdgeServer: boolean;
encryptionKey: string;
}
export declare class RspackFlightClientEntryPlugin {
plugin: any;
compiler?: Compiler;
constructor(options: Options);
apply(compiler: Compiler): void;
}
export {};