@makerinc/react-sdk
    Preparing search index...

    Interface UseQueryResult<T>

    Standard query result returned by all hooks

    interface UseQueryResult<T> {
        data?: T;
        error?: Error;
        isError: boolean;
        isLoading: boolean;
    }

    Type Parameters

    • T
    Index

    Properties

    data?: T
    error?: Error
    isError: boolean
    isLoading: boolean