Assuming I have the following code:
You could pass a reference of your tag using $event and change it's attribute from your typescript code.
Or if you want to change something in image tag on another event you could do it like this
and then simply access in typescript code like this
functioninTypeScript(image:any) {
image.src='path to new image';
}