FetchReturn: Promise<{
    error: null;
    response: Response;
} | {
    error: Error;
    response: null;
}>

Represents the return value of the fetch method. Only one property will be set at a time.

Generated using TypeDoc