diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-11-27 14:55:27 -0500 | 
|---|---|---|
| committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-11-27 14:55:27 -0500 | 
| commit | 7aed9a371b0d74c0d75179a08068e8935b76d780 (patch) | |
| tree | 2d895b20e31cb03c8200e4429d987c6d253b1da7 /ext/js/display | |
| parent | 5dc16745468c229e7c31f6cddaad83fb9c36b98f (diff) | |
Update types
Diffstat (limited to 'ext/js/display')
| -rw-r--r-- | ext/js/display/search-action-popup-controller.js | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/ext/js/display/search-action-popup-controller.js b/ext/js/display/search-action-popup-controller.js index 733fd70a..3a2057a1 100644 --- a/ext/js/display/search-action-popup-controller.js +++ b/ext/js/display/search-action-popup-controller.js @@ -18,10 +18,10 @@  export class SearchActionPopupController {      /** -     * @param {SearchPersistentStateController} searchPersistentStateController +     * @param {import('./search-persistent-state-controller.js').SearchPersistentStateController} searchPersistentStateController       */      constructor(searchPersistentStateController) { -        /** @type {SearchPersistentStateController} */ +        /** @type {import('./search-persistent-state-controller.js').SearchPersistentStateController} */          this._searchPersistentStateController = searchPersistentStateController;      } |