diff --git a/docs/en-US/component/upload.md b/docs/en-US/component/upload.md index 9d4884ea3b..6df1cc816f 100644 --- a/docs/en-US/component/upload.md +++ b/docs/en-US/component/upload.md @@ -144,13 +144,13 @@ upload/manual ### Exposes -| Name | Description | Type | -| ------------ | ------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------- | -| abort | cancel upload request. | ^[Function]`(file?: UploadFile) => void` | -| submit | upload the file list manually. | ^[Function]`() => void` | -| clearFiles | clear the file list (this method is not supported in the `before-upload` hook). | ^[Function]`(status?: UploadStatus[]) => void` | -| handleStart | select the file manually. | ^[Function]`(rawFile: UploadRawFile) => void` | -| handleRemove | remove the file manually. `file` and `rawFile` has been merged. `rawFile` will be removed in `v2.2.0`. | ^[Function]`(file: UploadFile \| UploadRawFile, rawFile?: UploadRawFile) => void` | +| Name | Description | Type | +| ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------- | +| abort | cancel upload request. When a `file` is specified, abort the corresponding pending upload; when no file is specified, abort all pending uploads. | ^[Function]`(file?: UploadFile) => void` | +| submit | upload the file list manually. | ^[Function]`() => void` | +| clearFiles | clear the file list (this method is not supported in the `before-upload` hook). | ^[Function]`(status?: UploadStatus[]) => void` | +| handleStart | select the file manually. | ^[Function]`(rawFile: UploadRawFile) => void` | +| handleRemove | remove the file manually. `file` and `rawFile` has been merged. `rawFile` will be removed in `v2.2.0`. | ^[Function]`(file: UploadFile \| UploadRawFile, rawFile?: UploadRawFile) => void` | ## Type Declarations