From a9bffa24626aeed4a69beea36f32cf3b3b045037 Mon Sep 17 00:00:00 2001 From: Brian Barrow Date: Thu, 23 Feb 2023 09:26:58 -0700 Subject: [PATCH] changed times to be optional in Options object --- src/types/liveTranscriptionOptions.ts | 2 +- src/types/prerecordedTranscriptionOptions.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/types/liveTranscriptionOptions.ts b/src/types/liveTranscriptionOptions.ts index f1669532..7463fbf3 100644 --- a/src/types/liveTranscriptionOptions.ts +++ b/src/types/liveTranscriptionOptions.ts @@ -211,7 +211,7 @@ export type LiveTranscriptionOptions = { * Indicates whether to convert times from written format (e.g., three oclock) to * numerical format (e.g., 3:00). * */ - times: boolean; + times?: boolean; /** * Option to format punctuated commands diff --git a/src/types/prerecordedTranscriptionOptions.ts b/src/types/prerecordedTranscriptionOptions.ts index ef9c9927..b93cda6c 100644 --- a/src/types/prerecordedTranscriptionOptions.ts +++ b/src/types/prerecordedTranscriptionOptions.ts @@ -238,7 +238,7 @@ export type PrerecordedTranscriptionOptions = { * Indicates whether to convert times from written format (e.g., three oclock) to * numerical format (e.g., 3:00). * */ - times: boolean; + times?: boolean; /** * Option to format punctuated commands