diff options
Diffstat (limited to 'ext/node/polyfills/diagnostics_channel.ts')
-rw-r--r-- | ext/node/polyfills/diagnostics_channel.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/node/polyfills/diagnostics_channel.ts b/ext/node/polyfills/diagnostics_channel.ts index 880ae6f88..08f099aa6 100644 --- a/ext/node/polyfills/diagnostics_channel.ts +++ b/ext/node/polyfills/diagnostics_channel.ts @@ -1,7 +1,7 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. -import { ERR_INVALID_ARG_TYPE } from "internal:deno_node/internal/errors.ts"; -import { validateFunction } from "internal:deno_node/internal/validators.mjs"; -import { nextTick } from "internal:deno_node/process.ts"; +import { ERR_INVALID_ARG_TYPE } from "ext:deno_node/internal/errors.ts"; +import { validateFunction } from "ext:deno_node/internal/validators.mjs"; +import { nextTick } from "ext:deno_node/process.ts"; type Subscriber = (message: unknown, name?: string) => void; |