From ce526f11a2c30ac8a87956f084932e03f652e86f Mon Sep 17 00:00:00 2001 From: Luke Oliff Date: Tue, 5 Dec 2023 14:48:22 +0000 Subject: [PATCH] fix: mistyped definition for alternative confidence on live event (#216) --- src/lib/types/LiveTranscriptionEvent.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/types/LiveTranscriptionEvent.ts b/src/lib/types/LiveTranscriptionEvent.ts index 31d07ac7..c4f5e534 100644 --- a/src/lib/types/LiveTranscriptionEvent.ts +++ b/src/lib/types/LiveTranscriptionEvent.ts @@ -8,7 +8,7 @@ export interface LiveTranscriptionEvent { channel: { alternatives: { transcript: string; - confidence: boolean; + confidence: number; words: { word: string; start: number;