angular-formio
Version:
The Form.io dynamic form and data management system for Angular.
21 lines (18 loc) • 392 B
text/typescript
import { Injectable } from '@angular/core';
export interface FormioAlert {
type: string;
message: string;
}
()
export class FormioAlerts {
public alerts: FormioAlert[] = [];
setAlert(alert: FormioAlert) {
this.alerts = [alert];
}
addAlert(alert: FormioAlert) {
this.alerts.push(alert);
}
setAlerts(alerts: FormioAlert[]) {
this.alerts = alerts;
}
}