UNPKG

@azuro-org/sdk

Version:

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

9 lines (8 loc) 244 B
import { GameState } from '@azuro-org/toolkit'; export type UseGameStateProps = { gameId: string; initialState: GameState; }; export declare const useGameState: ({ gameId, initialState }: UseGameStateProps) => { data: GameState; };