Skip to content

Commit 9f3ef25

Browse files
authored
Merge pull request itinance#1091 from AlexPlekhov/patch-1
Update README.md
2 parents c319af7 + 76f9baf commit 9f3ef25

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,8 @@ var files = [
265265
}
266266
];
267267

268-
var uploadBegin = (response) => {
268+
var upload
269+
= (response) => {
269270
var jobId = response.jobId;
270271
console.log('UPLOAD HAS BEGUN! JobId: ' + jobId);
271272
};
@@ -558,7 +559,7 @@ type DownloadFileOptions = {
558559
cacheable?: boolean; // Whether the download can be stored in the shared NSURLCache (iOS only, defaults to true)
559560
progressInterval?: number;
560561
progressDivider?: number;
561-
begin?: (res: DownloadBeginCallbackResult) => void;
562+
begin?: (res: DownloadBeginCallbackResult) => void; // Note: it is required when progress prop provided
562563
progress?: (res: DownloadProgressCallbackResult) => void;
563564
resumable?: () => void; // only supported on iOS yet
564565
connectionTimeout?: number // only supported on Android yet

0 commit comments

Comments
 (0)