mirror of
https://github.com/ant-design/ant-design.git
synced 2025-08-06 07:56:28 +08:00
fix: rm useless ts def of upload (#44468)
This commit is contained in:
parent
bbbc3d9bd5
commit
97b03dc938
@ -87,7 +87,7 @@ Extends File with additional props.
|
|||||||
| crossOrigin | CORS settings attributes | `'anonymous'` \| `'use-credentials'` \| `''` | - | 4.20.0 |
|
| crossOrigin | CORS settings attributes | `'anonymous'` \| `'use-credentials'` \| `''` | - | 4.20.0 |
|
||||||
| name | File name | string | - | - |
|
| name | File name | string | - | - |
|
||||||
| percent | Upload progress percent | number | - | - |
|
| percent | Upload progress percent | number | - | - |
|
||||||
| status | Upload status. Show different style when configured | `error` \| `success` \| `done` \| `uploading` \| `removed` | - | - |
|
| status | Upload status. Show different style when configured | `error` \| `done` \| `uploading` \| `removed` | - | - |
|
||||||
| thumbUrl | Thumb image url | string | - | - |
|
| thumbUrl | Thumb image url | string | - | - |
|
||||||
| uid | unique id. Will auto-generate when not provided | string | - | - |
|
| uid | unique id. Will auto-generate when not provided | string | - | - |
|
||||||
| url | Download url | string | - | - |
|
| url | Download url | string | - | - |
|
||||||
|
@ -88,7 +88,7 @@ demo:
|
|||||||
| crossOrigin | CORS 属性设置 | `'anonymous'` \| `'use-credentials'` \| `''` | - | 4.20.0 |
|
| crossOrigin | CORS 属性设置 | `'anonymous'` \| `'use-credentials'` \| `''` | - | 4.20.0 |
|
||||||
| name | 文件名 | string | - | - |
|
| name | 文件名 | string | - | - |
|
||||||
| percent | 上传进度 | number | - | - |
|
| percent | 上传进度 | number | - | - |
|
||||||
| status | 上传状态,不同状态展示颜色也会有所不同 | `error` \| `success` \| `done` \| `uploading` \| `removed` | - | - |
|
| status | 上传状态,不同状态展示颜色也会有所不同 | `error` \| `done` \| `uploading` \| `removed` | - | - |
|
||||||
| thumbUrl | 缩略图地址 | string | - | - |
|
| thumbUrl | 缩略图地址 | string | - | - |
|
||||||
| uid | 唯一标识符,不设置时会自动生成 | string | - | - |
|
| uid | 唯一标识符,不设置时会自动生成 | string | - | - |
|
||||||
| url | 下载地址 | string | - | - |
|
| url | 下载地址 | string | - | - |
|
||||||
|
@ -1,16 +1,17 @@
|
|||||||
|
import type * as React from 'react';
|
||||||
import type {
|
import type {
|
||||||
RcFile as OriRcFile,
|
RcFile as OriRcFile,
|
||||||
UploadRequestOption as RcCustomRequestOptions,
|
UploadRequestOption as RcCustomRequestOptions,
|
||||||
UploadProps as RcUploadProps,
|
UploadProps as RcUploadProps,
|
||||||
} from 'rc-upload/lib/interface';
|
} from 'rc-upload/lib/interface';
|
||||||
import type * as React from 'react';
|
|
||||||
import type { ProgressAriaProps, ProgressProps } from '../progress';
|
import type { ProgressAriaProps, ProgressProps } from '../progress';
|
||||||
|
|
||||||
export interface RcFile extends OriRcFile {
|
export interface RcFile extends OriRcFile {
|
||||||
readonly lastModifiedDate: Date;
|
readonly lastModifiedDate: Date;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type UploadFileStatus = 'error' | 'success' | 'done' | 'uploading' | 'removed';
|
export type UploadFileStatus = 'error' | 'done' | 'uploading' | 'removed';
|
||||||
|
|
||||||
export interface HttpRequestHeader {
|
export interface HttpRequestHeader {
|
||||||
[key: string]: string;
|
[key: string]: string;
|
||||||
|
Loading…
Reference in New Issue
Block a user