AngularTS
    Preparing search index...

    Interface RequestConfig

    Full request configuration accepted by $http(...). See http://docs.angularjs.org/api/ng/service/$http#usage

    interface RequestConfig {
        cache?: any;
        data?: any;
        eventHandlers?: Record<string, EventListenerOrEventListenerObject>;
        headers?: HttpRequestConfigHeaders;
        method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
        params?: any;
        paramSerializer?: string | ((obj: any) => string);
        responseType?: string;
        timeout?: number | Promise<any>;
        transformRequest?: HttpRequestTransformer | HttpRequestTransformer[];
        transformResponse?: HttpResponseTransformer | HttpResponseTransformer[];
        uploadEventHandlers?: Record<string, EventListenerOrEventListenerObject>;
        url: string;
        withCredentials?: boolean;
        xsrfCookieName?: string;
        xsrfHeaderName?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    cache?: any
    data?: any
    eventHandlers?: Record<string, EventListenerOrEventListenerObject>
    method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS"
    params?: any
    paramSerializer?: string | ((obj: any) => string)
    responseType?: string
    timeout?: number | Promise<any>
    uploadEventHandlers?: Record<string, EventListenerOrEventListenerObject>
    url: string
    withCredentials?: boolean
    xsrfCookieName?: string
    xsrfHeaderName?: string