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