UNPKG

769 BTypeScriptView Raw
1import * as i0 from "@angular/core";
2/**
3 * A configuration service for the [`NgbTimepicker`](#/components/timepicker/api#NgbTimepicker) 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 timepickers used in the application.
7 */
8export declare class NgbTimepickerConfig {
9 meridian: boolean;
10 spinners: boolean;
11 seconds: boolean;
12 hourStep: number;
13 minuteStep: number;
14 secondStep: number;
15 disabled: boolean;
16 readonlyInputs: boolean;
17 size: 'small' | 'medium' | 'large';
18 static ɵfac: i0.ɵɵFactoryDeclaration<NgbTimepickerConfig, never>;
19 static ɵprov: i0.ɵɵInjectableDeclaration<NgbTimepickerConfig>;
20}