mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-16 23:10:29 +00:00
core-js: Declare globals with 'var' to avoid conflicts (#15362)
This commit is contained in:
Vendored
+2
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user