diff options
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/js/background/backend.js | 4 | ||||
| -rw-r--r-- | ext/js/pages/settings/backup-controller.js | 14 | 
2 files changed, 6 insertions, 12 deletions
| diff --git a/ext/js/background/backend.js b/ext/js/background/backend.js index c3de6fc7..99aa0c5d 100644 --- a/ext/js/background/backend.js +++ b/ext/js/background/backend.js @@ -55,9 +55,7 @@ export class Backend {          this._japaneseUtil = new JapaneseUtil(wanakana);          /** @type {Environment} */          this._environment = new Environment(); -        /** -         * -         */ +        /** @type {AnkiConnect} */          this._anki = new AnkiConnect();          /** @type {Mecab} */          this._mecab = new Mecab(); diff --git a/ext/js/pages/settings/backup-controller.js b/ext/js/pages/settings/backup-controller.js index c539bdfe..c0e56e96 100644 --- a/ext/js/pages/settings/backup-controller.js +++ b/ext/js/pages/settings/backup-controller.js @@ -50,13 +50,9 @@ export class BackupController {          /** @type {?OptionsUtil} */          this._optionsUtil = null; -        /** -         * -         */ +        /** @type {string} */          this._dictionariesDatabaseName = 'dict'; -        /** -         * -         */ +        /** @type {?import('core').TokenObject} */          this._settingsExportDatabaseToken = null;          try { @@ -586,9 +582,7 @@ export class BackupController {          return blob;      } -    /** -     * -     */ +    /** */      async _onSettingsExportDatabaseClick() {          if (this._settingsExportDatabaseToken !== null) {              // An existing import or export is in progress. @@ -603,6 +597,7 @@ export class BackupController {          const date = new Date(Date.now());          const pageExitPrevention = this._settingsController.preventPageExit();          try { +            /** @type {import('core').TokenObject} */              const token = {};              this._settingsExportDatabaseToken = token;              const fileName = `yomitan-dictionaries-${this._getSettingsExportDateString(date, '-', '-', '-', 6)}.json`; @@ -681,6 +676,7 @@ export class BackupController {          const file = files[0];          element.value = '';          try { +            /** @type {import('core').TokenObject} */              const token = {};              this._settingsExportDatabaseToken = token;              await this._importDatabase(this._dictionariesDatabaseName, file); |