UNPKG

716 BTypeScriptView Raw
1import * as i0 from "@angular/core";
2/**
3 * A configuration service for the [`NgbProgressbar`](#/components/progressbar/api#NgbProgressbar) component.
4 *
5 * You can inject this service, typically in your root component, and customize the values of its properties in
6 * order to provide default values for all the progress bars used in the application.
7 */
8export declare class NgbProgressbarConfig {
9 max: number;
10 animated: boolean;
11 ariaLabel: string;
12 striped: boolean;
13 textType: string;
14 type: string;
15 showValue: boolean;
16 height: string;
17 static ɵfac: i0.ɵɵFactoryDeclaration<NgbProgressbarConfig, never>;
18 static ɵprov: i0.ɵɵInjectableDeclaration<NgbProgressbarConfig>;
19}