import { ApiResponseHeaders } from '../HttpClient'; export default interface ProgressiveSession { uploadPart(file: string): Promise; uploadPartWithResponseHeaders(file: string): Promise<{ headers: ApiResponseHeaders; body: T; }>; uploadLastPart(file: string): Promise; uploadLastPartWithResponseHeaders(file: string): Promise<{ headers: ApiResponseHeaders; body: T; }>; }