Rocky_Mountain_Vending/.pnpm-store/v10/files/8a/dda040c32cac4bc28dcd5719dd57a4f322aba46745a0c7f702e3c30c5ed445cb2f5e56acc26a37aecc3c0bdc1e341ecfc11cbe6314ed1b6608610c0996abd1
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

26 lines
No EOL
726 B
Text

/**
* @license
* Copyright 2024 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type { Event } from 'webdriver-bidi-protocol';
import type { Commands } from 'webdriver-bidi-protocol';
import type { EventEmitter } from '../../common/EventEmitter.js';
export type { Commands };
/**
* @internal
*/
export type BidiEvents = {
[K in Event['method']]: Extract<Event, {
method: K;
}>['params'];
};
/**
* @internal
*/
export interface Connection<Events extends BidiEvents = BidiEvents> extends EventEmitter<Events> {
send<T extends keyof Commands>(method: T, params: Commands[T]['params']): Promise<{
result: Commands[T]['returnType'];
}>;
}
//# sourceMappingURL=Connection.d.ts.map