UNPKG

@azuro-org/sdk

Version:

One-stop solution for building betting dApps on the Azuro Protocol.

12 lines (11 loc) 292 B
import { type Selection } from '@azuro-org/toolkit'; export type UseOddsProps = { selections: Selection[]; }; export declare const useOdds: ({ selections }: UseOddsProps) => { data: { odds: Record<string, number>; totalOdds: number; }; isFetching: boolean; };