/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
cli/tsc/dts/node/undici/patch.d.ts
27 строк
568 B
David Sherret
feat: include `@types/node` type declarations out of the box (#31502)
09 дек 2025, 13:58
Не верифицирован
09 дек 2025, 13:58
a49fdb5
Код
Авторство
О чём код?
// See https://github.com/nodejs/undici/issues/1740 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 }