UNPKG

happy-dom-without-node

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.

17 lines (15 loc) 308 B
import 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; }