Skip to content

Commit

Permalink
types: Allow null for retryDelays
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitriiprusakov committed Dec 5, 2023
1 parent e54e39e commit 14e57fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ interface UploadOptions {
onAfterResponse?: (req: HttpRequest, res: HttpResponse) => void | Promise<void>

chunkSize?: number
retryDelays?: number[]
retryDelays?: number[] | null
parallelUploads?: number
parallelUploadBoundaries?: { start: number; end: number }[] | null
storeFingerprintForResuming?: boolean
Expand Down

0 comments on commit 14e57fa

Please sign in to comment.