Rocky_Mountain_Vending/.pnpm-store/v10/files/97/1ad1815c0af4c69b65d1c0be6cc046f9d305a828032f8480655fd00227da948e9bcb39c4460b46a04e652f5811bcb1f28833eba0545d886a7115a313a9b3ae
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

22 lines
499 B
Text

/**
* @license
* Copyright 2020 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {EventEmitter} from 'events';
declare module 'enquirer' {
interface ConfirmOption {
name: string | (() => string);
message: string | (() => string);
initial?: boolean | (() => boolean);
actions?: {'ctrl': {[key: string]: string}}
}
class Confirm extends EventEmitter {
constructor(option: ConfirmOption);
run: () => Promise<boolean>;
close: () => Promise<void>
}
}