@azuro-org/toolkit
Version:
This framework-agnostic package provides essential utilities for building applications on the Azuro Protocol.
28 lines (27 loc) • 709 B
TypeScript
import * as Types from '../types';
export type ConditionFragment = {
__typename?: 'Condition';
id: string;
conditionId: string;
state: Types.ConditionState;
title?: string | null;
isExpressForbidden: boolean;
isPrematchEnabled: boolean;
isLiveEnabled: boolean;
margin: string;
outcomes: Array<{
__typename?: 'Outcome';
title?: string | null;
outcomeId: string;
odds: string;
}>;
game: {
__typename?: 'Game';
gameId: string;
sport: {
__typename?: 'Sport';
sportId: string;
};
};
};
export declare const ConditionFragmentDoc: import("graphql/language/ast").DocumentNode;