aboutsummaryrefslogtreecommitdiff
path: root/types
diff options
context:
space:
mode:
Diffstat (limited to 'types')
-rw-r--r--types/ext/display.d.ts3
-rw-r--r--types/ext/translator.d.ts3
2 files changed, 0 insertions, 6 deletions
diff --git a/types/ext/display.d.ts b/types/ext/display.d.ts
index 86662659..b11d54e1 100644
--- a/types/ext/display.d.ts
+++ b/types/ext/display.d.ts
@@ -17,7 +17,6 @@
import type {DisplayContentManager} from '../../ext/js/display/display-content-manager';
import type {HotkeyHelpController} from '../../ext/js/input/hotkey-help-controller';
-import type {JapaneseUtil} from '../../ext/js/language/sandbox/japanese-util';
import type * as Dictionary from './dictionary';
import type * as Extension from './extension';
import type * as Settings from './settings';
@@ -128,7 +127,6 @@ export type GetSearchContextCallback = TextScannerTypes.GetSearchContextCallback
export type QueryParserConstructorDetails = {
getSearchContext: GetSearchContextCallback;
- japaneseUtil: JapaneseUtil;
};
export type QueryParserOptions = {
@@ -169,7 +167,6 @@ export type Events = {
export type EventArgument<TName extends EventNames<Events>> = BaseEventArgument<Events, TName>;
export type DisplayGeneratorConstructorDetails = {
- japaneseUtil: JapaneseUtil;
contentManager: DisplayContentManager;
hotkeyHelpController?: HotkeyHelpController | null;
};
diff --git a/types/ext/translator.d.ts b/types/ext/translator.d.ts
index 65a77e90..5d552ca8 100644
--- a/types/ext/translator.d.ts
+++ b/types/ext/translator.d.ts
@@ -16,13 +16,10 @@
*/
import type {DictionaryDatabase} from '../../ext/js/dictionary/dictionary-database';
-import type {JapaneseUtil} from '../../ext/js/language/sandbox/japanese-util';
import type * as Dictionary from './dictionary';
import type * as DictionaryDatabaseTypes from './dictionary-database';
export type ConstructorDetails = {
- /** An instance of JapaneseUtil. */
- japaneseUtil: JapaneseUtil;
/** An instance of DictionaryDatabase. */
database: DictionaryDatabase;
};