Rocky_Mountain_Vending/.pnpm-store/v10/files/b3/4f81ee84af8bfd5d9eb03abe4b2416a8ae8285ba5bcd0d1825b97a05270614cf9eda31522f1fbdbb89f464503202842ea551f710e45be7165992ee935c3598
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

36 lines
No EOL
1.2 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 { JSHandle } from '../api/JSHandle.js';
import type { CdpElementHandle } from './ElementHandle.js';
import type { IsolatedWorld } from './IsolatedWorld.js';
/**
* @internal
*/
export declare class CdpJSHandle<T = unknown> extends JSHandle<T> {
#private;
constructor(world: IsolatedWorld, remoteObject: Protocol.Runtime.RemoteObject);
get disposed(): boolean;
get realm(): IsolatedWorld;
get client(): CDPSession;
jsonValue(): Promise<T>;
/**
* Either `null` or the handle itself if the handle is an
* instance of {@link ElementHandle}.
*/
asElement(): CdpElementHandle<Node> | null;
dispose(): Promise<void>;
toString(): string;
get id(): string | undefined;
remoteObject(): Protocol.Runtime.RemoteObject;
getProperties(): Promise<Map<string, JSHandle<unknown>>>;
}
/**
* @internal
*/
export declare function releaseObject(client: CDPSession, remoteObject: Protocol.Runtime.RemoteObject): Promise<void>;
//# sourceMappingURL=JSHandle.d.ts.map