/*! * Jodit Editor (https://xdsoft.net/jodit/) * Released under MIT see LICENSE.txt in the project root for license information. * Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net */ /** * @module request */ import type { IRequest, IResponse } from "../../types/index"; export declare class Response implements IResponse { readonly status: number; readonly statusText: string; readonly request: IRequest; get url(): string; private readonly body; constructor(request: IRequest, status: number, statusText: string, body: string | Blob); json(): Promise; text(): Promise; blob(): Promise; }