Hello,
currentlyonTextChange
event emitter has generic typeTagModel
(which is superset of astring
type) butstring
on its own would be sufficient. We only emit value of text input, which is always ofstring
type.
| @Output()publiconTextChange=newEventEmitter<TagModel>(); |