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>
22 lines
499 B
Text
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>
|
|
}
|
|
}
|