diff options
Diffstat (limited to 'ext/web/04_global_interfaces.js')
-rw-r--r-- | ext/web/04_global_interfaces.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/web/04_global_interfaces.js b/ext/web/04_global_interfaces.js index bc261a009..8483a7b23 100644 --- a/ext/web/04_global_interfaces.js +++ b/ext/web/04_global_interfaces.js @@ -3,13 +3,13 @@ // @ts-check /// <reference path="../../core/internal.d.ts" /> -import { EventTarget } from "ext:deno_web/02_event.js"; import { primordials } from "ext:core/mod.js"; const { Symbol, SymbolToStringTag, TypeError, } = primordials; +import { EventTarget } from "./02_event.js"; const illegalConstructorKey = Symbol("illegalConstructorKey"); |