Rocky_Mountain_Vending/.pnpm-store/v10/files/09/0673642c53880a246e9f6e9980d2625b8ad8f67d30e194f5bb7da60d56f76005ea581098068fa6f1eab5ea5866ee1f7c8a47fc4324278b76bb2b6d070f1ee5
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
400 B
Text

import type { Client } from "./client";
/**
* @internal
*
* @param commands - command lookup container.
* @param client - client instance on which to add aggregated methods.
* @returns an aggregated client with dynamically created methods.
*/
export declare const createAggregatedClient: (commands: Record<string, any>, Client: {
new (...args: any): Client<any, any, any, any>;
}) => void;