Skip to content

Commit

Permalink
Merge pull request #110 from deepgram/make-time-options
Browse files Browse the repository at this point in the history
Make times optional
  • Loading branch information
briancbarrow authored Feb 23, 2023
2 parents 9534188 + 49ac384 commit 0c13318
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/types/liveTranscriptionOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/types/prerecordedTranscriptionOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0c13318

Please sign in to comment.