summaryrefslogtreecommitdiff
path: root/ext/console
diff options
context:
space:
mode:
Diffstat (limited to 'ext/console')
-rw-r--r--ext/console/02_console.js2
-rw-r--r--ext/console/internal.d.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/console/02_console.js b/ext/console/02_console.js
index 6f708c71f..04ac50670 100644
--- a/ext/console/02_console.js
+++ b/ext/console/02_console.js
@@ -118,7 +118,7 @@ const {
WeakMapPrototype,
WeakSetPrototype,
} = primordials;
-import * as colors from "internal:deno_console/01_colors.js";
+import * as colors from "ext:deno_console/01_colors.js";
function isInvalidDate(x) {
return isNaN(DatePrototypeGetTime(x));
diff --git a/ext/console/internal.d.ts b/ext/console/internal.d.ts
index fba711d5a..d344f3a77 100644
--- a/ext/console/internal.d.ts
+++ b/ext/console/internal.d.ts
@@ -3,7 +3,7 @@
/// <reference no-default-lib="true" />
/// <reference lib="esnext" />
-declare module "internal:deno_console/02_console.js" {
+declare module "ext:deno_console/02_console.js" {
function createFilteredInspectProxy<TObject>(params: {
object: TObject;
keys: (keyof TObject)[];