Misplaced this Parameter
The special `this` parameter must be declared first in a function's parameter list.
Codetypescript
interface Button {
text: string;
}
function handleClick(event: Event, this: Button) {
console.log(this.text);
}What is the bug in this code?