Rocky_Mountain_Vending/.pnpm-store/v10/files/63/cb9e700ba562e3a0f7081fe5dee65f051af18f64a3fcaec94821d057c97014cb4d9cf0daa0d6e2543f895d75101d30500df9fec4c0afd16774149a097ce26e
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

11 lines
910 B
Text

import type { Compilation, Chunk, ChunkGroup, Module, ModuleGraph, Compiler } from 'webpack';
import type { ModuleGraphConnection } from 'webpack';
import type { Span } from '../../trace';
export declare function traverseModules(compilation: Compilation, callback: (mod: any, chunk: Chunk, chunkGroup: (typeof compilation.chunkGroups)[0], modId: string | null) => any, filterChunkGroup?: (chunkGroup: ChunkGroup) => boolean): void;
export declare function forEachEntryModule(compilation: any, callback: ({ name, entryModule }: {
name: string;
entryModule: any;
}) => void): void;
export declare function formatBarrelOptimizedResource(resource: string, matchResource: string): string;
export declare function getModuleReferencesInOrder(module: Module, moduleGraph: ModuleGraph): ModuleGraphConnection[];
export declare function getCompilationSpan(compilation: Compiler | Compilation): Span | undefined;