@azuro-org/toolkit
Version:
This framework-agnostic package provides essential utilities for building applications on the Azuro Protocol.
24 lines (23 loc) • 691 B
TypeScript
import * as Types from './types';
export type SportsNavigationQueryVariables = Types.Exact<{
sportFilter?: Types.InputMaybe<Types.Sport_Filter>;
}>;
export type SportsNavigationQuery = {
__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;
};
}>;
};
export declare const SportsNavigationDocument: import("graphql/language/ast").DocumentNode;