Rocky_Mountain_Vending/.pnpm-store/v10/files/f9/bfadc7bd9e039fe8d68eae1a3a903ec382e2d7a91fe5e901c2595277b7504020a5259fba8453b0826b54ac1b24539fcb3a4127bd5ba8fb400f645553ecbc62
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

29 lines
No EOL
1.3 KiB
Text

/**
* @license
* Copyright 2023 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type * as Bidi from 'webdriver-bidi-protocol';
import { ElementHandle, type AutofillData } from '../api/ElementHandle.js';
import type { AwaitableIterable } from '../common/types.js';
import type { BidiFrame } from './Frame.js';
import { BidiJSHandle } from './JSHandle.js';
import type { BidiFrameRealm } from './Realm.js';
/**
* @internal
*/
export declare class BidiElementHandle<ElementType extends Node = Element> extends ElementHandle<ElementType> {
#private;
static from<ElementType extends Node = Element>(value: Bidi.Script.RemoteValue, realm: BidiFrameRealm): BidiElementHandle<ElementType>;
handle: BidiJSHandle<ElementType>;
constructor(value: Bidi.Script.RemoteValue, realm: BidiFrameRealm);
get realm(): BidiFrameRealm;
get frame(): BidiFrame;
remoteValue(): Bidi.Script.RemoteValue;
autofill(data: AutofillData): Promise<void>;
contentFrame(this: BidiElementHandle<HTMLIFrameElement>): Promise<BidiFrame>;
uploadFile(this: BidiElementHandle<HTMLInputElement>, ...files: string[]): Promise<void>;
queryAXTree(this: BidiElementHandle<HTMLElement>, name?: string | undefined, role?: string | undefined): AwaitableIterable<ElementHandle<Node>>;
backendNodeId(): Promise<number>;
}
//# sourceMappingURL=ElementHandle.d.ts.map