diff --git a/ext/js/data/options-util.js b/ext/js/data/options-util.js index b83e5da4d8..4a73d05431 100644 --- a/ext/js/data/options-util.js +++ b/ext/js/data/options-util.js @@ -1514,7 +1514,6 @@ export class OptionsUtil { }); }); } - } /* eslint-enable @typescript-eslint/no-unsafe-assignment */ diff --git a/types/ext/settings.d.ts b/types/ext/settings.d.ts index 3f6cd09adf..d3b8ecf244 100644 --- a/types/ext/settings.d.ts +++ b/types/ext/settings.d.ts @@ -15,7 +15,6 @@ * along with this program. If not, see . */ -import type * as TextScanner from './text-scanner'; import type * as Input from './input'; export type OptionsContextFlag = 'clipboard'; @@ -28,7 +27,6 @@ export type OptionsContext1 = { flags?: OptionsContextFlag[]; modifiers?: Input.Modifier[]; modifierKeys?: Input.ModifierKey[]; - pointerType?: TextScanner.PointerType; }; export type OptionsContext2 = { @@ -39,7 +37,6 @@ export type OptionsContext2 = { flags?: OptionsContextFlag[]; modifiers?: Input.Modifier[]; modifierKeys?: Input.ModifierKey[]; - pointerType?: TextScanner.PointerType; }; export type OptionsContext3 = { @@ -50,7 +47,6 @@ export type OptionsContext3 = { flags?: OptionsContextFlag[]; modifiers?: Input.Modifier[]; modifierKeys?: Input.ModifierKey[]; - pointerType?: TextScanner.PointerType; }; export type OptionsContext = OptionsContext1 | OptionsContext2 | OptionsContext3;