UNPKG

object-storage-js

Version:

js直传server、minio、obs、oss、s3系列

12 lines (11 loc) 282 B
export interface ProgressCallback { loaded: number; total: number; } export declare function httpRequest(options: { method: string; url: string; data?: any; xhrInstance?: any; onProgress?: (params: ProgressCallback) => void; }): Promise<any>;