@renegade-fi/react
Version:
React library for Renegade
8 lines • 1.05 kB
TypeScript
import type { Evaluate, GetBackOfQueueWalletErrorType } from "@renegade-fi/core";
import { type GetBackOfQueueWalletData, type GetBackOfQueueWalletOptions, type GetBackOfQueueWalletQueryFnData, type GetBackOfQueueWalletQueryKey } from "@renegade-fi/core/query";
import type { ConfigParameter, QueryParameter } from "../types/properties.js";
import { type UseQueryReturnType } from "../utils/query.js";
export type UseBackOfQueueWalletParameters<selectData = GetBackOfQueueWalletData> = Evaluate<GetBackOfQueueWalletOptions & ConfigParameter & QueryParameter<GetBackOfQueueWalletQueryFnData, GetBackOfQueueWalletErrorType, selectData, GetBackOfQueueWalletQueryKey>>;
export type UseBackOfQueueWalletReturnType<selectData = GetBackOfQueueWalletData> = UseQueryReturnType<selectData, GetBackOfQueueWalletErrorType>;
export declare function useBackOfQueueWallet<selectData = GetBackOfQueueWalletData>(parameters?: UseBackOfQueueWalletParameters<selectData>): UseBackOfQueueWalletReturnType<selectData>;
//# sourceMappingURL=useBackOfQueueWallet.d.ts.map