Skip to content

Commit a91c06b

Browse files
committed
Update build
1 parent 6a4c2ec commit a91c06b

File tree

6 files changed

+1725
-9
lines changed

6 files changed

+1725
-9
lines changed

dist/helpers.js

Lines changed: 119 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/helpers.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/main.js

Lines changed: 1579 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/main.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/resumable.d.ts

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,18 +220,38 @@ export declare class Resumable extends ResumableEventHandler {
220220
* Event Handlers: This section should only include methods that are used to
221221
* handle events coming from the files or chunks.
222222
*/
223+
/**
224+
* The event handler when the chunking of a file was started
225+
*/
226+
private handleChunkingStart;
227+
/**
228+
* The event handler when there was any progress while chunking a file
229+
*/
230+
private handleChunkingProgress;
231+
/**
232+
* The event handler when the chunking of a file was completed
233+
*/
234+
private handleChunkingComplete;
223235
/**
224236
* The event handler when a chunk was uploaded successfully
225237
*/
226238
private handleChunkSuccess;
227239
/**
228-
* The event handler when a chunk was uploaded successfully
240+
* The event handler when an error happened while uploading a chunk
229241
*/
230242
private handleChunkError;
231243
/**
232-
* The event handler when an error occurred during the upload of a chunk
244+
* The event handler when an the upload of a chunk was canceled
233245
*/
234246
private handleChunkCancel;
247+
/**
248+
* The event handler when the upload of a chunk is being retried
249+
*/
250+
private handleChunkRetry;
251+
/**
252+
* The event handler when there is any progress while uploading a chunk
253+
*/
254+
private handleChunkProgress;
235255
/**
236256
* The event handler when an error occurred during the upload of a file
237257
*/

0 commit comments

Comments
 (0)