Files
aiot-platform-ui/apps/web-antd/src/components/upload/typing.ts

9 lines
188 B
TypeScript
Raw Normal View History

2025-04-17 23:30:34 +08:00
export enum UploadResultStatus {
DONE = 'done',
ERROR = 'error',
SUCCESS = 'success',
UPLOADING = 'uploading',
}
2025-04-24 17:56:02 +08:00
export type UploadListType = 'picture' | 'picture-card' | 'text';