aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/DictationManager.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2024-08-21 10:58:00 -0400
committerbobzel <zzzman@gmail.com>2024-08-21 10:58:00 -0400
commitb3327f8e1a4245110822b8aa8c331f32f93bb8f5 (patch)
tree2e7fbef3a26d600f53c1beca7a5d049adf8d01d4 /src/client/util/DictationManager.ts
parent77aa0be0ee4a5375544dbea65a4636d8487cd0fc (diff)
parent166d40bd856b85bd4bbde9f9ffe2c1ec0fb648d5 (diff)
Merge branch 'master' into keanu-comments
Diffstat (limited to 'src/client/util/DictationManager.ts')
-rw-r--r--src/client/util/DictationManager.ts4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/client/util/DictationManager.ts b/src/client/util/DictationManager.ts
index 16a0df120..a0e1413b6 100644
--- a/src/client/util/DictationManager.ts
+++ b/src/client/util/DictationManager.ts
@@ -32,14 +32,12 @@ import { UndoManager } from './UndoManager';
* to add new commands as classes or components are constructed.
*/
-// eslint-disable-next-line @typescript-eslint/no-namespace
export namespace DictationManager {
/**
* Some type maneuvering to access Webkit's built-in
* speech recognizer.
*/
- // eslint-disable-next-line @typescript-eslint/no-namespace
namespace CORE {
export interface IWindow extends Window {
webkitSpeechRecognition: { new (): SpeechRecognition };
@@ -48,7 +46,6 @@ export namespace DictationManager {
const { webkitSpeechRecognition }: CORE.IWindow = window as unknown as CORE.IWindow;
export const placeholder = 'Listening...';
- // eslint-disable-next-line @typescript-eslint/no-namespace
export namespace Controls {
export const Infringed = 'unable to process: dictation manager still involved in previous session';
const browser = (() => {
@@ -230,7 +227,6 @@ export namespace DictationManager {
};
}
- // eslint-disable-next-line @typescript-eslint/no-namespace
export namespace Commands {
export const dictationFadeDuration = 2000;