The object settingsin the AJAX callback is the settings object that was passed to the AJAX call. Therefore, you can search for a property typeto see if it was GET or POST:
jQuery(element).ajaxComplete(function(event, request, settings) {
alert(settings.type);
});
The parameters you can get this way are the same as the ones you can set using the constructor $.ajax.