/**
* Check if the module is of a certain type
*
* @param moduleTypeID The module type ID to check
*
* @return true if the module is of the given type, false otherwise
*/
function isModuleType(uint256 moduleTypeID) external pure returns (bool) {
return typeID == TYPE_VALIDATOR;
}