@azuro-org/toolkit
Version:
This framework-agnostic package provides essential utilities for building applications on the Azuro Protocol.
46 lines (45 loc) • 1.44 kB
TypeScript
import * as Types from './types';
export type NavigationQueryVariables = Types.Exact<{
sportFilter?: Types.InputMaybe<Types.Sport_Filter>;
countryFilter?: Types.InputMaybe<Types.Country_Filter>;
leagueFilter?: Types.InputMaybe<Types.League_Filter>;
}>;
export type NavigationQuery = {
__typename?: 'Query';
sports: Array<{
__typename?: 'Sport';
id: string;
slug: string;
name: string;
sportId: string;
activeGamesCount: number;
activeLiveGamesCount: number;
activePrematchGamesCount: number;
sporthub: {
__typename?: 'SportHub';
id: string;
slug: string;
};
countries: Array<{
__typename?: 'Country';
id: string;
slug: string;
name: string;
turnover: string;
activeGamesCount: number;
activeLiveGamesCount: number;
activePrematchGamesCount: number;
leagues: Array<{
__typename?: 'League';
id: string;
slug: string;
name: string;
turnover: string;
activeGamesCount: number;
activeLiveGamesCount: number;
activePrematchGamesCount: number;
}>;
}>;
}>;
};
export declare const NavigationDocument: import("graphql/language/ast").DocumentNode;