UNPKG

xbccs

Version:

customer service

11 lines (10 loc) 274 B
export interface IUploadOptions { file: File; name?: string; filePath: string; formData?: any; header?: any; success?: (res: any) => void; fail?: (err: any) => void; } export declare const uploadImage: (options: IUploadOptions) => Promise<void>;