import { OssHttpHeader } from './oss-http-header'; /** * oss服务http请求模型 */ export interface OssHttpRequest { host: string; path: string; method: string; headers: OssHttpHeader; contentType: string; data: File; }