Logos DX
    Preparing search index...

    Type Alias FetchContextQueryResult<T, RH>

    type FetchContextQueryResult<T, RH = Record<string, string>> = {
        cancel: () => void;
        data: T | null;
        error: FetchError | null;
        loading: boolean;
        refetch: () => void;
        response: FetchResponse<T, any, any, RH> | null;
    }

    Type Parameters

    Index

    Properties

    cancel: () => void
    data: T | null
    error: FetchError | null
    loading: boolean
    refetch: () => void
    response: FetchResponse<T, any, any, RH> | null