ezyVet Javascript Helper Library Documentation
    Preparing search index...

    Interface ResourceRequestOptions

    interface ResourceRequestOptions {
        abortSignal?: AbortSignal;
        body?: BodyInit;
        credentials?: RequestCredentials;
        headers?: Headers;
        method: FetchMethod;
        url: RequestInfo;
    }

    Hierarchy (View Summary)

    Index

    Properties

    abortSignal?: AbortSignal

    Signal to abort requests that are in flight

    body?: BodyInit

    Optional body to attach to the request

    credentials?: RequestCredentials

    Optionally set the request's credentials

    headers?: Headers

    Optional headers to attach to the request

    method: FetchMethod

    The method to fetch with

    url: RequestInfo

    The url to execute a fetch on