@gameye/sdk
Version:
Node.js SDK for Gameye
17 lines (16 loc) • 363 B
TypeScript
export interface MatchQueryState {
match: MatchQueryMatchIndex;
}
export interface MatchQueryMatchIndex {
[matchKey: string]: MatchQueryMatchItem | null;
}
export interface MatchQueryMatchItem {
matchKey: string;
gameKey: string;
locationKey: string;
host: string;
created: number;
port: {
[name: string]: number;
};
}