ngx-bootstrap-alert
Version:
For Angular5+ Provides alert messaging for your application. Message styling is driven by [Bootstrap](https://getbootstrap.com/).
15 lines (14 loc) • 627 B
TypeScript
import { BootstrapAlertInterface } from './bootstrap-alert';
import { BootstrapAlertService } from './bootstrap-alert.service';
export declare class BootstrapAlertComponent {
private bootstrapAlertService;
alertPosition: string;
bootstrapAlerts: Array<BootstrapAlertInterface>;
constructor(bootstrapAlertService: BootstrapAlertService);
readonly DEFAULT_TIMEOUT: number;
readonly FADE_TIMEOUT: number;
show(bootstrapAlert: BootstrapAlertInterface): void;
fade(bootstrapAlert: any): void;
destroy(uuid: string): void;
findIndex(array: any, attr: any, value: any): number;
}