-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Warning: Convert package to TypeScript (#62557)
Co-authored-by: jpstevens <[email protected]> Co-authored-by: youknowriad <[email protected]> Co-authored-by: sirreal <[email protected]> Co-authored-by: jsnajdr <[email protected]> Co-authored-by: up1512001 <[email protected]>
- Loading branch information
1 parent
a1c648f
commit fe61e1d
Showing
3 changed files
with
9 additions
and
7 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
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
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 |
---|---|---|
@@ -1,7 +1,5 @@ | ||
/** | ||
* Object map tracking messages which have been logged, for use in ensuring a | ||
* message is only logged once. | ||
* | ||
* @type {Set<string>} | ||
*/ | ||
export const logged = new Set(); | ||
export const logged: Set< string > = new Set(); |