Rocky_Mountain_Vending/.pnpm-store/v10/files/9a/6f07808308d69814d794afc4471a306a609465693a99c7086b26a112c027d334f87e99ce07b38fe59003ab7760c7d3f76f8e3f70ecff9bc74c7543f44559c0
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

13 lines
589 B
Text

import type webpack from 'webpack';
export declare function isClientComponentEntryModule(mod: webpack.NormalModule): boolean;
export declare const regexCSS: RegExp;
export declare function isCSSMod(mod: {
resource: string;
type?: string;
loaders?: {
loader: string;
}[];
}): boolean;
export declare function encodeToBase64<T extends object>(obj: T): string;
export declare function decodeFromBase64<T extends object>(str: string): T;
export declare function getLoaderModuleNamedExports(resourcePath: string, context: webpack.LoaderContext<any>): Promise<string[]>;