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/dts/lib.deno.shared_globals.d.ts | |
parent | eb7f70c0b04d07feb30d41418935a3521811f8f8 (diff) |
fix(cli/dts): Use var instead of const and let for globals (#7680)
Diffstat (limited to 'cli/dts/lib.deno.shared_globals.d.ts')
-rw-r--r-- | cli/dts/lib.deno.shared_globals.d.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cli/dts/lib.deno.shared_globals.d.ts b/cli/dts/lib.deno.shared_globals.d.ts index 9f40e2521..9e324258d 100644 --- a/cli/dts/lib.deno.shared_globals.d.ts +++ b/cli/dts/lib.deno.shared_globals.d.ts @@ -222,8 +222,6 @@ interface DOMStringList { type BufferSource = ArrayBufferView | ArrayBuffer; -declare const isConsoleInstance: unique symbol; - declare interface Console { assert(condition?: boolean, ...data: any[]): void; clear(): void; @@ -584,7 +582,7 @@ declare class Performance { now(): number; } -declare const performance: Performance; +declare var performance: Performance; declare interface PerformanceMarkOptions { /** Metadata to be included in the mark. */ |