Rocky_Mountain_Vending/.pnpm-store/v10/files/ef/82e8d3b13ca0e7aea01ede618dd2f6c7cee191686f7b525e6e0167558e811f04a09028b170a9882840663680b54b6d54df4245f096c48a005ec6811fbd625c
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
406 B
Text

import { 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;