Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
34 lines
691 B
Plaintext
34 lines
691 B
Plaintext
/// <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
|
|
}
|