/
lostSun
/
project-client-server-apps
Обзор
Документация
Войти
/
lostSun
/
project-client-server-apps
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/undici-types/patch.d.ts
33 строки
691 B
1lostsun
initial commit
05 май 2025, 11:35
05 май 2025, 11:35
fe8f535
Код
Авторство
О чём код?
/// <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 }