Rocky_Mountain_Vending/.pnpm-store/v10/files/c9/61556b488533285eb1c62a0a1e98315ab33faf22cf0513aaf3638a982676cbb2dcf2121aff1b8659cada1e500e7b5d81b3d3c6b4f8eba64e42de813ae86936
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

27 lines
No EOL
715 B
Text

"use strict";
/**
* @license
* Copyright 2017 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.CdpDialog = void 0;
const Dialog_js_1 = require("../api/Dialog.js");
/**
* @internal
*/
class CdpDialog extends Dialog_js_1.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,
});
}
}
exports.CdpDialog = CdpDialog;
//# sourceMappingURL=Dialog.js.map