Actually - there is a "trick" in Angular to allow you to pass a primitive type (like a string or a number) to a child component and have those changes emitted back to the data referenced by the parent component. This is done by creating a "output EventEmitter" whose name exactly matches the input - but suffixed with "Change". I'm not sure if this is documented anywhere in any official Angular documentation - after a cursory check I wasn't able to find this.
Anyway, the best stack overflow post that documents this technique I was able to find was this:
https://stackoverflow.com/a/37855138/5692144
There is also this post - but it doesn't specifically discuss the requirement of the naming of the @Output EventEmitter:
https://stackoverflow.com/a/43571004/5692144
And I've confirmed this works as described.
I'm not sure why the architects/designers of Angular haven't made this technique a "first class citizen" that doesn't require you to use to obscure/arcane naming convention (for your Output EventEmitter).