Skip to content

Commit

Permalink
Update types
Browse files Browse the repository at this point in the history
  • Loading branch information
toasted-nutbread committed Dec 16, 2023
1 parent 51735f7 commit 9a61e3a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ext/js/display/display.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,12 +139,12 @@ export class Display extends EventDispatcher {
this._contentScrollBodyElement = querySelectorNotNull(document, '#content-body');
/** @type {ScrollElement} */
this._windowScroll = new ScrollElement(this._contentScrollElement);
/** @type {HTMLButtonElement} */
this._closeButton = querySelectorNotNull(document, '#close-button');
/** @type {HTMLButtonElement} */
this._navigationPreviousButton = querySelectorNotNull(document, '#navigate-previous-button');
/** @type {HTMLButtonElement} */
this._navigationNextButton = querySelectorNotNull(document, '#navigate-next-button');
/** @type {?HTMLButtonElement} */
this._closeButton = document.querySelector('#close-button');
/** @type {?HTMLButtonElement} */
this._navigationPreviousButton = document.querySelector('#navigate-previous-button');
/** @type {?HTMLButtonElement} */
this._navigationNextButton = document.querySelector('#navigate-next-button');
/** @type {?Frontend} */
this._frontend = null;
/** @type {?Promise<void>} */
Expand Down

0 comments on commit 9a61e3a

Please sign in to comment.