mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
15 lines
330 B
TypeScript
15 lines
330 B
TypeScript
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
||
|
// @deno-types="./_events.d.ts"
|
||
|
export {
|
||
|
captureRejectionSymbol,
|
||
|
default,
|
||
|
defaultMaxListeners,
|
||
|
errorMonitor,
|
||
|
EventEmitter,
|
||
|
getEventListeners,
|
||
|
listenerCount,
|
||
|
on,
|
||
|
once,
|
||
|
setMaxListeners,
|
||
|
} from "internal:deno_node/polyfills/_events.mjs";
|