UNPKG

happy-dom

Version:

Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.

18 lines 493 B
import type { PropertySymbol } from '../../index.js'; import type Headers from '../Headers.js'; /** * Fetch response. * * @see https://developer.mozilla.org/en-US/docs/Web/API/Response/Response */ export default interface ISyncResponse { status: number; statusText: string; ok: boolean; url: string; redirected: boolean; headers: Headers; body: Buffer | null; [PropertySymbol.virtualServerFile]?: string | null; } //# sourceMappingURL=ISyncResponse.d.ts.map