Skip to content

Commit

Permalink
fix: fix stray array of boolean type (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeocodes authored Oct 19, 2023
1 parent d15fab4 commit e4e7056
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/types/TranscriptionOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ interface TranscriptionOptions extends Record<string, unknown> {
/**
* @see https://developers.deepgram.com/docs/redaction
*/
redact?: Array<string> | Array<boolean> | boolean;
redact?: Array<string> | string | boolean;

/**
* @see https://developers.deepgram.com/docs/diarization
Expand Down

0 comments on commit e4e7056

Please sign in to comment.