From 04b3f4667c60ed7ca8baa8e08f02df72e5511ce6 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Tue, 17 Sep 2024 23:40:18 +0700 Subject: [PATCH] lint --- ext/js/data/options-util.js | 1 - types/ext/settings.d.ts | 4 ---- 2 files changed, 5 deletions(-) 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;