diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2020-09-25 22:23:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-26 07:23:35 +1000 |
commit | 0ffaaba1648bab0cf8da04bbb9a2e1fac2ac60aa (patch) | |
tree | 6cf63e366f298615ea3f9f52f73c55be7c18ca3e /cli/tests | |
parent | eb7f70c0b04d07feb30d41418935a3521811f8f8 (diff) |
fix(cli/dts): Use var instead of const and let for globals (#7680)
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/types.out | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/types.out b/cli/tests/types.out index 85bee7698..ee59f57c1 100644 --- a/cli/tests/types.out +++ b/cli/tests/types.out @@ -1,4 +1,4 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. [WILDCARD] declare namespace Deno [WILDCARD] -declare const window: Window [WILDCARD] +declare var window: Window [WILDCARD] |