interface ServerDetail {
	ipV4Address: string;
	ports: {
		name: string;
		publicPort: number;
		privatePort: number;
		protocol: 1 | 2; // 1 = TCP, 2 = UDP
	}[];
}

interface CloudScriptMatchmaking {
	confirmServerDetail(gameId: string, matchmakingTicketCanMatch: MatchmakingTicketCanMatch, serverDetail: ServerDetail);
}

declare const matchmaking: CloudScriptMatchmaking;
