Rocky_Mountain_Vending/.pnpm-store/v10/files/21/d85db718c86a9570be4b8c375007c8c3d96d4477195c84b1808f82f50702fd4b41daa5b035b5ed5491f4c5e2e519de4ceaa0b5975e306baa8db66e5e734cb9
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

23 lines
No EOL
568 B
Text

/**
* @license
* Copyright 2017 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import { Dialog } from '../api/Dialog.js';
/**
* @internal
*/
export class CdpDialog extends Dialog {
#client;
constructor(client, type, message, defaultValue = '') {
super(type, message, defaultValue);
this.#client = client;
}
async handle(options) {
await this.#client.send('Page.handleJavaScriptDialog', {
accept: options.accept,
promptText: options.text,
});
}
}
//# sourceMappingURL=Dialog.js.map