From f8493b7b8f2b3735b8cfdf4fa768d64a0450ba55 Mon Sep 17 00:00:00 2001 From: Andy Date: Fri, 24 Mar 2017 12:38:34 -0700 Subject: [PATCH] core-js: Declare globals with 'var' to avoid conflicts (#15362) --- core-js/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core-js/index.d.ts b/core-js/index.d.ts index 39eb9b9f39..0bbe4974ae 100644 --- a/core-js/index.d.ts +++ b/core-js/index.d.ts @@ -324,7 +324,7 @@ interface Log extends Console { /** * Non-standard. */ -declare const log: Log; +declare var log: Log; // ############################################################################################# // Dict - https://github.com/zloirock/core-js/#dict @@ -371,7 +371,7 @@ interface DictConstructor { /** * Non-standard. */ -declare const Dict: DictConstructor; +declare var Dict: DictConstructor; // ############################################################################################# // Partial application - https://github.com/zloirock/core-js/#partial-application