Rocky_Mountain_Vending/.pnpm-store/v10/files/76/84e77cc9b1a4e0f9a3dec210c991d319590137219d87ae3fb73507fad08ce0d0d398830fdf0626dffdcd4127557a4ca3e66d2e1987d71755893f0f6666128b
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
780 B
Text

import type { HeadersObject } from "./types.mjs";
/*@__NO_SIDE_EFFECTS__*/ export declare function rawHeaders(headers: HeadersObject);
type Fn = (...args: any[]) => any;
/*@__NO_SIDE_EFFECTS__*/ export declare function mergeFns(...functions: Fn[]): unknown;
/*@__NO_SIDE_EFFECTS__*/ export declare function createNotImplementedError(name: string);
/*@__NO_SIDE_EFFECTS__*/ export declare function notImplemented<Fn extends (...args: any) => any>(name: string): Fn;
export interface Promisifiable {
(): any;
native: Promisifiable;
__promisify__: () => Promise<any>;
}
/*@__NO_SIDE_EFFECTS__*/ export declare function notImplementedAsync(name: string): Promisifiable;
/*@__NO_SIDE_EFFECTS__*/ export declare function notImplementedClass<T = unknown>(name: string): T;
export {};