Hey there, I'm new to typescript and angular 2 and I've encountered an error in my code. Can someone lend me a hand in fixing this?
import { Component, HostListener } from '@angular/core'
export class TooltipComponent {
public show: boolean = false;
@HostListener('document:click',['$event'])
documentClick(event: MouseEvent) {
this.show = false;
}
showTooltip() {
this.show = true;
this.documentClick('????');
}
}