variable Response This Fetch API interface represents the response to a request. type 🔗 { readonly prototype: Response; new (body?: BodyInit | null, init?: ResponseInit): Response; json(data: unknown, init?: ResponseInit): Response; error(): Response; redirect(url: string | URL, status?: number): Response; }
interface Response extends Body This Fetch API interface represents the response to a request. Properties 🔗 headers: Headers 🔗 ok: boolean 🔗 redirected: boolean 🔗 status: number 🔗 statusText: string 🔗 type: ResponseType 🔗 url: string Methods 🔗 clone(): Response