Logos DX
    Preparing search index...

    Interface ExecuteResult<T, H, P, RH>

    Result of a request execution.

    interface ExecuteResult<T = unknown, H = unknown, P = unknown, RH = unknown> {
        cacheKey?: string;
        fromCache: boolean;
        response: FetchResponse<T, H, P, RH>;
    }

    Type Parameters

    • T = unknown

      Response data type

    • H = unknown

      Headers type

    • P = unknown

      Params type

    • RH = unknown

      Response headers type

    Index

    Properties

    cacheKey?: string
    fromCache: boolean
    response: FetchResponse<T, H, P, RH>