From a0302ed5ac59250af8ef0ec8342af9fb9d6c4309 Mon Sep 17 00:00:00 2001 From: dsyoon Date: Wed, 28 Jan 2026 22:19:36 +0900 Subject: [PATCH] Add maxAlternatives type --- client/src/types/speech.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/types/speech.d.ts b/client/src/types/speech.d.ts index f5df92f..c7ceda5 100644 --- a/client/src/types/speech.d.ts +++ b/client/src/types/speech.d.ts @@ -7,6 +7,7 @@ interface SpeechRecognition extends EventTarget { continuous: boolean interimResults: boolean lang: string + maxAlternatives: number onresult: ((event: SpeechRecognitionEvent) => void) | null onerror: ((event: Event) => void) | null onend: (() => void) | null