| export interface IUploadProvider { | |
| uploadSimple(path: string): Promise<string>; | |
| uploadFile(file: Express.Multer.File): Promise<any>; | |
| removeFile(filePath: string): Promise<void>; | |
| } | |
| export interface IUploadProvider { | |
| uploadSimple(path: string): Promise<string>; | |
| uploadFile(file: Express.Multer.File): Promise<any>; | |
| removeFile(filePath: string): Promise<void>; | |
| } | |