(options: { retryable?: boolean })
| 194 | } |
| 195 | |
| 196 | function retryableUploadStreamDetail(options: { retryable?: boolean }): Record<string, true> { |
| 197 | return options.retryable === true ? { [UPLOAD_STREAM_RETRYABLE_DETAIL]: true } : {}; |
| 198 | } |
| 199 | |
| 200 | function emitUploadAttemptStarted( |
| 201 | progress: UploadStreamProgressOptions | undefined, |
no outgoing calls
no test coverage detected