ngx-bootstrap-alert
Version:
For Angular5+ Provides alert messaging for your application. Message styling is driven by [Bootstrap](https://getbootstrap.com/).
22 lines (21 loc) • 641 B
TypeScript
export interface BootstrapAlertInterface {
message: string;
timeoutInMiliSeconds: number;
type: AlertType;
uuid: string;
state: string;
}
export declare type AlertType = 'alert-danger' | 'alert-success' | 'alert-info' | 'alert-warning';
export declare class BootstrapAlert implements BootstrapAlertInterface {
private _message;
private _timeoutInMiliSeconds;
private _type;
private _uuid;
private _state;
constructor(message: string, type: AlertType);
message: string;
timeoutInMiliSeconds: number;
type: AlertType;
readonly uuid: string;
state: string;
}