UNPKG

wagmi

Version:

React Hooks for Ethereum

9 lines 929 B
import type { Config, GetCallsStatusErrorType, ResolvedRegister } from '@wagmi/core'; import type { Compute, ConfigParameter } from '@wagmi/core/internal'; import { type GetCallsStatusData, type GetCallsStatusOptions } from '@wagmi/core/query'; import { type UseQueryReturnType } from '../utils/query.js'; export type UseCallsStatusParameters<config extends Config = Config, selectData = GetCallsStatusData> = Compute<GetCallsStatusOptions<selectData> & ConfigParameter<config>>; export type UseCallsStatusReturnType<selectData = GetCallsStatusData> = UseQueryReturnType<selectData, GetCallsStatusErrorType>; /** https://wagmi.sh/react/api/hooks/useCallsStatus */ export declare function useCallsStatus<config extends Config = ResolvedRegister['config'], selectData = GetCallsStatusData>(parameters: UseCallsStatusParameters<config, selectData>): UseCallsStatusReturnType<selectData>; //# sourceMappingURL=useCallsStatus.d.ts.map