@gameye/sdk
Version:
Node.js SDK for Gameye
20 lines (19 loc) • 482 B
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;
}