-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
declare global { | ||
namespace mw { | ||
namespace log { | ||
/** | ||
* Create a property on a host object that, when accessed, will produce a deprecation warning in the console. | ||
* @param {*} obj Host object of deprecated property | ||
* @param {string} key Name of property to create in `obj` | ||
* @param {*} val The value this property should return when accessed | ||
* @param {string?} msg Optional text to include in the deprecation message | ||
* @param {string?} logName Name for the feature for logging and tracking purposes. Except for properties of the window object, tracking is only enabled if logName is set | ||
* @returns {void} | ||
*/ | ||
function deprecate( | ||
obj: any, | ||
key: string, | ||
val: any, | ||
msg?: string, | ||
logName?: string | ||
): void; | ||
|
||
/** | ||
* Write a message to the browser console's error channel. | ||
* | ||
* Most browsers also print a stacktrace when calling this method if the argument is an Error object. | ||
* | ||
* This method is a no-op in browsers that don't implement the Console API. | ||
* @param {Array<*>} msg Messages to output to console | ||
* @returns {void} | ||
*/ | ||
function error(...msg: any[]): void; | ||
|
||
/** | ||
* Write a message to the browser console's warning channel. | ||
* | ||
* This method is a no-op in browsers that don't implement the Console API. | ||
* @param msg Messages to output to console | ||
* @returns {void} | ||
*/ | ||
function warn(...msg: any[]): void; | ||
} | ||
} | ||
} | ||
|
||
export {}; |