UNPKG

565 BTypeScriptView Raw
1import { NgbConfig } from '../ngb-config';
2/**
3 * A configuration service for the [NgbAlert](#/components/alert/api#NgbAlert) component.
4 *
5 * You can inject this service, typically in your root component, and customize its properties
6 * to provide default values for all alerts used in the application.
7 */
8export declare class NgbAlertConfig {
9 private _ngbConfig;
10 dismissible: boolean;
11 type: string;
12 private _animation;
13 constructor(_ngbConfig: NgbConfig);
14 get animation(): boolean;
15 set animation(animation: boolean);
16}