Rocky_Mountain_Vending/.pnpm-store/v10/files/ee/a70e520cd9350fec33d96589d9a799fdf17128fb10d81130f076e15a65a84b004edf945614e89e96f1df49b791645e4627363e7ef0ccd16c9276702babd206
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

19 lines
No EOL
695 B
Text

import type { ExecutionContext } from './ExecutionContext.js';
/**
* @internal
*/
export declare class Binding {
#private;
constructor(name: string, fn: (...args: unknown[]) => unknown, initSource: string);
get name(): string;
get initSource(): string;
/**
* @param context - Context to run the binding in; the context should have
* the binding added to it beforehand.
* @param id - ID of the call. This should come from the CDP
* `onBindingCalled` response.
* @param args - Plain arguments from CDP.
*/
run(context: ExecutionContext, id: number, args: unknown[], isTrivial: boolean): Promise<void>;
}
//# sourceMappingURL=Binding.d.ts.map