After browsing the net for over an hour my question remains. What is the 'correct' way to create a node type in a module.
.install: hook_install() gives you the possibility to create node_types using the node_type_save() hook...
.module using hook_node_info() you can add node type(s).
What are the pro's and cons of those 2 methods? Is there in fact a different? What happens when you uninstall the module? How should one manage updates in both cases? The drupal docu hasn't been really helpfull for me :(