1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| import type { TransferMethod } from '@/types/app'
|
| export enum FileAppearanceTypeEnum {
| image = 'image',
| video = 'video',
| audio = 'audio',
| document = 'document',
| code = 'code',
| pdf = 'pdf',
| markdown = 'markdown',
| excel = 'excel',
| word = 'word',
| ppt = 'ppt',
| gif = 'gif',
| custom = 'custom',
| }
|
| export type FileAppearanceType = keyof typeof FileAppearanceTypeEnum
|
| export type FileEntity = {
| id: string
| name: string
| size: number
| type: string
| progress: number
| transferMethod: TransferMethod
| supportFileType: string
| originalFile?: File
| uploadedId?: string
| base64Url?: string
| url?: string
| isRemote?: boolean
| }
|
|