admin-vben/apps/web-antd/src/components/upload/typing.ts

9 lines
188 B
TypeScript

export enum UploadResultStatus {
DONE = 'done',
ERROR = 'error',
SUCCESS = 'success',
UPLOADING = 'uploading',
}
export type UploadListType = 'picture' | 'picture-card' | 'text';