AngularTS
    Preparing search index...

    Interface RequestShortcutConfig

    Request options shared by the $http shortcut methods. See http://docs.angularjs.org/api/ng/service/$http#usage

    interface RequestShortcutConfig {
        cache?: any;
        data?: any;
        headers?: HttpRequestConfigHeaders;
        params?: any;
        paramSerializer?: string | ((obj: any) => string);
        responseType?: string;
        timeout?: number | Promise<any>;
        transformRequest?: HttpRequestTransformer | HttpRequestTransformer[];
        transformResponse?: HttpResponseTransformer | HttpResponseTransformer[];
        withCredentials?: boolean;
        xsrfCookieName?: string;
        xsrfHeaderName?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    cache?: any
    data?: any
    params?: any
    paramSerializer?: string | ((obj: any) => string)
    responseType?: string
    timeout?: number | Promise<any>
    withCredentials?: boolean
    xsrfCookieName?: string
    xsrfHeaderName?: string