UNPKG

wagmi

Version:

React Hooks for Ethereum

10 lines 1.26 kB
import type { Config, ResolvedRegister } from '@wagmi/core'; import { type WaitForCallsStatusData, type WaitForCallsStatusErrorType, type WaitForCallsStatusOptions, type WaitForCallsStatusQueryFnData, type WaitForCallsStatusQueryKey } from '@wagmi/core/experimental'; import type { Compute } from '@wagmi/core/internal'; 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