Merge "Fix unquoted properties of HTMLElementEventMap"

This commit is contained in:
Ben Rohlfs
2020-12-17 15:52:52 +00:00
committed by Gerrit Code Review
2 changed files with 4 additions and 2 deletions

View File

@@ -1077,7 +1077,8 @@ declare global {
// TODO(TS): Be more specific than CustomEvent, which has detail:any.
declare global {
interface HTMLElementEventMap {
render: CustomEvent;
/* prettier-ignore */
'render': CustomEvent;
'normalize-range': CustomEvent;
'diff-context-expanded': CustomEvent;
'create-comment': CustomEvent;

View File

@@ -179,7 +179,8 @@ declare global {
declare global {
interface HTMLElementEventMap {
reload: ReloadEvent;
/* prettier-ignore */
'reload': ReloadEvent;
}
}