@azuro-org/sdk
Version:
One-stop solution for building betting dApps on the Azuro Protocol.
10 lines (9 loc) • 425 B
TypeScript
import { type ChainId, type WaveId, type WaveLevelData } from '@azuro-org/toolkit';
import { type QueryParameter } from '../../global';
type Props = {
waveId?: WaveId;
chainId?: ChainId;
query?: QueryParameter<WaveLevelData[] | null>;
};
export declare const useWaveLevels: ({ waveId, chainId, query }?: Props) => import("@tanstack/react-query").UseQueryResult<NoInfer<WaveLevelData[] | null>, Error>;
export {};