Interface ResponseContext

interface ResponseContext {
    fetch: ((input: RequestInfo | URL, init?: RequestInit) => Promise<Response>);
    init: RequestInit;
    response: Response;
    url: string;
}

Properties

Properties

fetch: ((input: RequestInfo | URL, init?: RequestInit) => Promise<Response>)
init: RequestInit
response: Response
url: string