interface CloudScriptSocket {
	sendEventTo(userId: string, operationEvent: OperationEvent);
	sendEventToMoreUser(userIds: string[], operationEvent: OperationEvent);
	sendEventToAllPlayer(operationEvent: OperationEvent);
}

declare const socket: CloudScriptSocket;
