Rocky_Mountain_Vending/.pnpm-store/v10/files/7d/04b2d14a1715cd426380e91e1c3f278f7f8b022c169a49706b6023e8f7b66f4d1bc935063cb3c730030b3c88366533a0987e3816408633dd06b5dc3990464e
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
779 B
Text

"use strict";
/**
* @license
* Copyright 2017 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.BidiDialog = void 0;
const Dialog_js_1 = require("../api/Dialog.js");
class BidiDialog extends Dialog_js_1.Dialog {
static from(prompt) {
return new BidiDialog(prompt);
}
#prompt;
constructor(prompt) {
super(prompt.info.type, prompt.info.message, prompt.info.defaultValue);
this.#prompt = prompt;
this.handled = prompt.handled;
}
async handle(options) {
await this.#prompt.handle({
accept: options.accept,
userText: options.text,
});
}
}
exports.BidiDialog = BidiDialog;
//# sourceMappingURL=Dialog.js.map