/** * Represents the response type of the Upload. */ export interface UploadResponse { /** * The response that was provided by the server. */ response: any; /** * The HTTP status code from the server response. */ status: number; /** * The HTTP status message from the server response. */ statusText: string; /** * The headers with which the server responded. */ headers: any; /** * The XMLHttpRequest instance of the browser. */ request?: XMLHttpRequest; }