diff options
Diffstat (limited to 'cli/js/runtime_worker.ts')
-rw-r--r-- | cli/js/runtime_worker.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/js/runtime_worker.ts b/cli/js/runtime_worker.ts index 18f8841f9..ed735fd52 100644 --- a/cli/js/runtime_worker.ts +++ b/cli/js/runtime_worker.ts @@ -22,7 +22,8 @@ import * as denoNs from "./deno.ts"; import * as denoUnstableNs from "./deno_unstable.ts"; import * as webWorkerOps from "./ops/web_worker.ts"; import { log, assert, immutableDefine } from "./util.ts"; -import { MessageEvent, ErrorEvent } from "./web/workers.ts"; +import { ErrorEventImpl as ErrorEvent } from "./web/error_event.ts"; +import { MessageEvent } from "./web/workers.ts"; import { TextEncoder } from "./web/text_encoding.ts"; import * as runtime from "./runtime.ts"; import { internalObject, internalSymbol } from "./internals.ts"; |