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>
28 lines
No EOL
925 B
Text
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 |