angular-formio
Version:
The Form.io dynamic form and data management system for Angular.
17 lines • 495 B
JavaScript
var FormioAlerts = /** @class */ (function () {
function FormioAlerts() {
this.alerts = [];
}
FormioAlerts.prototype.setAlert = function (alert) {
this.alerts = [alert];
};
FormioAlerts.prototype.addAlert = function (alert) {
this.alerts.push(alert);
};
FormioAlerts.prototype.setAlerts = function (alerts) {
this.alerts = alerts;
};
return FormioAlerts;
}());
export { FormioAlerts };
//# sourceMappingURL=formio.alerts.js.map