If I have the following button in an html file
<button (click)="doSomething('testing', $event)">Do something</button>
Also, in the corresponding component, I have this function
doSomething(testString: string, event){
event.stopPropagation();
console.log(testString + ': I am doing something');
}
Is there a proper type that should be assigned to the $event
input?
The event parameter itself is an object, BUT if I assign it to a type object, I get an error
Property 'stopPropogation' does not exist on type object
So, what does Typescript consider the $event
input?