@gameye/sdk
Version:
Node.js SDK for Gameye
22 lines (19 loc) • 484 B
text/typescript
export interface GameQueryState {
game: GameQueryGameIndex;
location: GameQueryLocationIndex;
}
export interface GameQueryGameIndex {
[gameKey: string]: GameQueryGameItem | null;
}
export interface GameQueryLocationIndex {
[locationKey: string]: GameQueryLocationItem | null;
}
export interface GameQueryGameItem {
gameKey: string;
location: {
[locationKey: string]: true,
};
}
export interface GameQueryLocationItem {
locationKey: string;
}