Skip to content

Commit

Permalink
fix: correct doc & resilve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-huxiyang committed Sep 6, 2024
1 parent 5525954 commit 92634e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/packages/uploader/doc.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ app.post('/upload', upload.single('file'), (req, res) => {
| onStart | File upload started | `(option: UploadOptions) => void` | `-` |
| onProgress | Progress of file upload | `(param: {e: ProgressEvent<XMLHttpRequestEventTarget>;option: UploadOptions;percentage: string \| number}) => void` | `-` |
| onOversize | Triggered when the file size exceeds the limit | `(file: File[]) => void` | `-` |
| onOverLimit | Triggered when the file size exceeds the maxCount | `(file: File[]) => void` | `-` |
| onOverLimit | Triggered when the number of files exceeds the maxCount | `(file: File[]) => void` | `-` |
| onSuccess | uploaded successfully | `(param: {e: ProgressEvent<XMLHttpRequestEventTarget>;option: UploadOptions;percentage: string \| number}) => void` | `-` |
| onFailure | upload failed | `(param: {e: ProgressEvent<XMLHttpRequestEventTarget>;option: UploadOptions;percentage: string \| number}) => void` | `-` |
| onChange | Status when uploaded files change | `(files: FileItem[]) => void` | `-` |
Expand Down

0 comments on commit 92634e8

Please sign in to comment.