Files
iot-device-management-frontend/apps/web-naive/src/components/upload/typing.ts

9 lines
188 B
TypeScript
Raw Normal View History

2025-05-09 16:17:20 +08:00
export enum UploadResultStatus {
DONE = 'done',
ERROR = 'error',
SUCCESS = 'success',
UPLOADING = 'uploading',
}
export type UploadListType = 'picture' | 'picture-card' | 'text';