UNPKG

721 BTypeScriptView Raw
1import { NgbConfig } from '../ngb-config';
2import * as i0 from "@angular/core";
3/**
4 * A configuration service for the [NgbCollapse](#/components/collapse/api#NgbCollapse) component.
5 *
6 * You can inject this service, typically in your root component, and customize its properties
7 * to provide default values for all collapses used in the application.
8 */
9export declare class NgbCollapseConfig {
10 private _ngbConfig;
11 private _animation;
12 horizontal: boolean;
13 constructor(_ngbConfig: NgbConfig);
14 get animation(): boolean;
15 set animation(animation: boolean);
16 static ɵfac: i0.ɵɵFactoryDeclaration<NgbCollapseConfig, never>;
17 static ɵprov: i0.ɵɵInjectableDeclaration<NgbCollapseConfig>;
18}