Skip to content

Commit

Permalink
Fixed #277
Browse files Browse the repository at this point in the history
  • Loading branch information
Merve7 committed Jan 8, 2018
1 parent 5f5cc5d commit 8e49027
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/fileupload/FileUpload.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ interface FileUploadProps {
chooseLabel?: string;
uploadLabel?: string;
cancelLabel?: string;
onBeforeUpload?(): void;
onBeforeSend?(): void;
onBeforeUpload?(e: { xhr: XMLHttpRequest, formData: any }): void;
onBeforeSend?(e: { xhr: XMLHttpRequest, formData: any }): void;
onUpload?(e: {xhr: XMLHttpRequest, files: any}): void;
onError?(e: {xhr: XMLHttpRequest, files: any}): void;
onClear?(): void;
Expand Down

0 comments on commit 8e49027

Please sign in to comment.