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>
59 lines
No EOL
2.2 KiB
Text
59 lines
No EOL
2.2 KiB
Text
/**
|
|
* @license
|
|
* Copyright 2017 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
import type * as ChromiumBidi from 'chromium-bidi/lib/cjs/protocol/protocol.js';
|
|
import type { ConnectionTransport } from '../common/ConnectionTransport.js';
|
|
import type { EventsWithWildcard } from '../common/EventEmitter.js';
|
|
import { EventEmitter } from '../common/EventEmitter.js';
|
|
import type { GetIdFn } from '../util/incremental-id-generator.js';
|
|
import type { BidiEvents, Commands as BidiCommands, Connection } from './core/Connection.js';
|
|
export type CdpEvent = ChromiumBidi.Cdp.Event;
|
|
/**
|
|
* @internal
|
|
*/
|
|
export interface Commands extends BidiCommands {
|
|
'goog:cdp.sendCommand': {
|
|
params: ChromiumBidi.Cdp.SendCommandParameters;
|
|
returnType: ChromiumBidi.Cdp.SendCommandResult;
|
|
};
|
|
'goog:cdp.getSession': {
|
|
params: ChromiumBidi.Cdp.GetSessionParameters;
|
|
returnType: ChromiumBidi.Cdp.GetSessionResult;
|
|
};
|
|
'goog:cdp.resolveRealm': {
|
|
params: ChromiumBidi.Cdp.ResolveRealmParameters;
|
|
returnType: ChromiumBidi.Cdp.ResolveRealmResult;
|
|
};
|
|
}
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare class BidiConnection extends EventEmitter<BidiEvents> implements Connection {
|
|
#private;
|
|
constructor(url: string, transport: ConnectionTransport, idGenerator: GetIdFn, delay?: number, timeout?: number);
|
|
get closed(): boolean;
|
|
get url(): string;
|
|
pipeTo<Events extends BidiEvents>(emitter: EventEmitter<Events>): void;
|
|
emit<Key extends keyof EventsWithWildcard<BidiEvents>>(type: Key, event: EventsWithWildcard<BidiEvents>[Key]): boolean;
|
|
send<T extends keyof Commands>(method: T, params: Commands[T]['params'], timeout?: number): Promise<{
|
|
result: Commands[T]['returnType'];
|
|
}>;
|
|
/**
|
|
* @internal
|
|
*/
|
|
protected onMessage(message: string): Promise<void>;
|
|
/**
|
|
* Unbinds the connection, but keeps the transport open. Useful when the transport will
|
|
* be reused by other connection e.g. with different protocol.
|
|
* @internal
|
|
*/
|
|
unbind(): void;
|
|
/**
|
|
* Unbinds the connection and closes the transport.
|
|
*/
|
|
dispose(): void;
|
|
getPendingProtocolErrors(): Error[];
|
|
}
|
|
//# sourceMappingURL=Connection.d.ts.map |