Rocky_Mountain_Vending/.pnpm-store/v10/files/b1/b5f0b5bbdf7eaa971af7102d60cda95bfc2dbdb87b0f58d59871a359297b543a75e1fc6e74f6da19e7becee682d8984683279e27700f17767a534f2dc9b603
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

14 lines
476 B
Text

import type { webpack } from 'next/dist/compiled/webpack/webpack';
export type NextFlightActionEntryLoaderOptions = {
actions: string;
};
export type FlightActionEntryLoaderActions = [
path: string,
actions: {
id: string;
exportedName?: string;
filename?: string;
}[]
][];
declare function nextFlightActionEntryLoader(this: webpack.LoaderContext<NextFlightActionEntryLoaderOptions>): string;
export default nextFlightActionEntryLoader;