Rocky_Mountain_Vending/.pnpm-store/v10/files/3b/65402e5bab01eb379260e08f53708742ddf033b2523aa5cc3706c79926d79bbe2ace12f743d5bc88b39ce39f2c8244abcb0a141e93ea9ee94db5c194ffd450
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

28 lines
No EOL
925 B
Text

/**
* @license
* Copyright 2023 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type * as Bidi from 'webdriver-bidi-protocol';
import type { ElementHandle } from '../api/ElementHandle.js';
import { JSHandle } from '../api/JSHandle.js';
import type { BidiRealm } from './Realm.js';
/**
* @internal
*/
export declare class BidiJSHandle<T = unknown> extends JSHandle<T> {
#private;
static from<T>(value: Bidi.Script.RemoteValue, realm: BidiRealm): BidiJSHandle<T>;
readonly realm: BidiRealm;
constructor(value: Bidi.Script.RemoteValue, realm: BidiRealm);
get disposed(): boolean;
jsonValue(): Promise<T>;
asElement(): ElementHandle<Node> | null;
dispose(): Promise<void>;
get isPrimitiveValue(): boolean;
toString(): string;
get id(): string | undefined;
remoteValue(): Bidi.Script.RemoteValue;
remoteObject(): never;
}
//# sourceMappingURL=JSHandle.d.ts.map