summaryrefslogtreecommitdiff
path: root/cli/js/internals_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js/internals_test.ts')
-rw-r--r--cli/js/internals_test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/internals_test.ts b/cli/js/internals_test.ts
index 055995fdf..47aea09e7 100644
--- a/cli/js/internals_test.ts
+++ b/cli/js/internals_test.ts
@@ -4,7 +4,7 @@ import { test, assert } from "./test_util.ts";
test(function internalsExists(): void {
const {
stringifyArgs
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- } = Deno[Deno.symbols.internal] as any;
+ // @ts-ignore TypeScript (as of 3.7) does not support indexing namespaces by symbol
+ } = Deno[Deno.symbols.internal];
assert(!!stringifyArgs);
});