Как добавить всплывающее подтверждение в Angular TypeScript.

 if (confirm("All unsaved changes will be lost. Do you want to cancel the update?")) {
      this.router.navigate(["Product"]);
    }
LovelyGeeks