Skip to content

Commit a9bffa2

Browse files
committed
changed times to be optional in Options object
1 parent 682afb3 commit a9bffa2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/types/liveTranscriptionOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ export type LiveTranscriptionOptions = {
211211
* Indicates whether to convert times from written format (e.g., three oclock) to
212212
* numerical format (e.g., 3:00).
213213
* */
214-
times: boolean;
214+
times?: boolean;
215215

216216
/**
217217
* Option to format punctuated commands

src/types/prerecordedTranscriptionOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ export type PrerecordedTranscriptionOptions = {
238238
* Indicates whether to convert times from written format (e.g., three oclock) to
239239
* numerical format (e.g., 3:00).
240240
* */
241-
times: boolean;
241+
times?: boolean;
242242

243243
/**
244244
* Option to format punctuated commands

0 commit comments

Comments
 (0)