aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/components/alert/index.ts
blob: 1be0c2ece250f9ef9b3a6104f7192b2c37eea693 (plain)
1
2
3
4
5
6
7
8
import { alertService, AlertInfo } from "./AlertService";
import { default as AlertHost } from "./AlertHost";

export { alertService, AlertHost };

export function pushAlert(alert: AlertInfo): void {
  alertService.push(alert);
}