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