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>
19 lines
No EOL
695 B
Text
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 |