UNPKG

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