My issue is, the methods used for both the events is getting triggered when I perform \"double click\"
For example, I need to perform specific functionality when spe
clickCount = 0; click() { this.clickCount++; setTimeout(() => { if (this.clickCount === 1) { // single } else if (this.clickCount === 2) { // double } this.clickCount = 0; }, 250) }