Files
aiot-platform-ui/apps/web-antd/src/components/upload/typing.ts
2025-04-24 17:56:02 +08:00

9 lines
188 B
TypeScript

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