UNPKG

wagmi

Version:

React Hooks for Ethereum

10 lines 1.25 kB
import type { Config, ResolvedRegister, WaitForCallsStatusErrorType } from '@wagmi/core'; import type { Compute } from '@wagmi/core/internal'; import { type WaitForCallsStatusData, type WaitForCallsStatusOptions, type WaitForCallsStatusQueryFnData, type WaitForCallsStatusQueryKey } from '@wagmi/core/query'; import type { ConfigParameter, QueryParameter } from '../types/properties.js'; import { type UseQueryReturnType } from '../utils/query.js'; export type UseWaitForCallsStatusParameters<config extends Config = Config, selectData = WaitForCallsStatusData> = Compute<WaitForCallsStatusOptions & ConfigParameter<config> & QueryParameter<WaitForCallsStatusQueryFnData, WaitForCallsStatusErrorType, selectData, WaitForCallsStatusQueryKey>>; export type UseWaitForCallsStatusReturnType<selectData = WaitForCallsStatusData> = UseQueryReturnType<selectData, WaitForCallsStatusErrorType>; /** https://wagmi.sh/react/api/hooks/useWaitForCallsStatus */ export declare function useWaitForCallsStatus<config extends Config = ResolvedRegister['config'], selectData = WaitForCallsStatusData>(parameters: UseWaitForCallsStatusParameters<config, selectData>): UseWaitForCallsStatusReturnType<selectData>; //# sourceMappingURL=useWaitForCallsStatus.d.ts.map