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>
11 lines
400 B
Text
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;
|