xior
    Preparing search index...

    Interface XiorInterceptorResponseConfig<T>

    interface XiorInterceptorResponseConfig<T = any> {
        config: XiorInterceptorRequestConfig<T>;
        data: T;
        headers: Headers;
        request: XiorInterceptorRequestConfig<T>;
        response: Response;
        status: number;
        statusText: string;
    }

    Type Parameters

    • T = any
    Index

    Properties

    data: T
    headers: Headers
    response: Response
    status: number
    statusText: string