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>
33 lines
691 B
Text
33 lines
691 B
Text
/// <reference types="node" />
|
|
|
|
// See https://github.com/nodejs/undici/issues/1740
|
|
|
|
export type DOMException = typeof globalThis extends { DOMException: infer T }
|
|
? T
|
|
: any
|
|
|
|
export interface EventInit {
|
|
bubbles?: boolean
|
|
cancelable?: boolean
|
|
composed?: boolean
|
|
}
|
|
|
|
export interface EventListenerOptions {
|
|
capture?: boolean
|
|
}
|
|
|
|
export interface AddEventListenerOptions extends EventListenerOptions {
|
|
once?: boolean
|
|
passive?: boolean
|
|
signal?: AbortSignal
|
|
}
|
|
|
|
export type EventListenerOrEventListenerObject = EventListener | EventListenerObject
|
|
|
|
export interface EventListenerObject {
|
|
handleEvent (object: Event): void
|
|
}
|
|
|
|
export interface EventListener {
|
|
(evt: Event): void
|
|
}
|