Rocky_Mountain_Vending/.pnpm-store/v10/files/66/265ea97ea21e5361363a072e647ba19f906da40083503911a7537bc5358504b78f64c5b3e8ff7dc3c352b448a6397c6b0fb92749ac09ca07fa3fb19801e126
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

35 lines
No EOL
1.5 KiB
Text

/**
* @license
* Copyright 2019 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type { Protocol } from 'devtools-protocol';
import type { CDPSession } from '../api/CDPSession.js';
import { ElementHandle, type AutofillData } from '../api/ElementHandle.js';
import type { AwaitableIterable } from '../common/types.js';
import type { CdpFrame } from './Frame.js';
import type { IsolatedWorld } from './IsolatedWorld.js';
import { CdpJSHandle } from './JSHandle.js';
/**
* The CdpElementHandle extends ElementHandle now to keep compatibility
* with `instanceof` because of that we need to have methods for
* CdpJSHandle to in this implementation as well.
*
* @internal
*/
export declare class CdpElementHandle<ElementType extends Node = Element> extends ElementHandle<ElementType> {
#private;
protected readonly handle: CdpJSHandle<ElementType>;
constructor(world: IsolatedWorld, remoteObject: Protocol.Runtime.RemoteObject);
get realm(): IsolatedWorld;
get client(): CDPSession;
remoteObject(): Protocol.Runtime.RemoteObject;
get frame(): CdpFrame;
contentFrame(this: ElementHandle<HTMLIFrameElement>): Promise<CdpFrame>;
scrollIntoView(this: CdpElementHandle<Element>): Promise<void>;
uploadFile(this: CdpElementHandle<HTMLInputElement>, ...files: string[]): Promise<void>;
autofill(data: AutofillData): Promise<void>;
queryAXTree(name?: string | undefined, role?: string | undefined): AwaitableIterable<ElementHandle<Node>>;
backendNodeId(): Promise<number>;
}
//# sourceMappingURL=ElementHandle.d.ts.map