@ng-bootstrap/ng-bootstrap
Version:
Angular powered Bootstrap
18 lines (17 loc) • 589 B
TypeScript
/**
* A configuration service for the [`NgbTimepicker`](#/components/timepicker/api#NgbTimepicker) component.
*
* You can inject this service, typically in your root component, and customize the values of its properties in
* order to provide default values for all the timepickers used in the application.
*/
export declare class NgbTimepickerConfig {
meridian: boolean;
spinners: boolean;
seconds: boolean;
hourStep: number;
minuteStep: number;
secondStep: number;
disabled: boolean;
readonlyInputs: boolean;
size: 'small' | 'medium' | 'large';
}