1 import { Injectable } from '@angular/core';
4 * Configuration service for the NgbTimepicker component.
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.
9 export class NgbTimepickerConfig {
10 public meridian = false;
11 public spinners = true;
12 public seconds = false;
14 public minuteStep = 1;
15 public secondStep = 1;
16 public disabled = false;
17 public readonlyInputs = false;
18 public size: 'small' | 'medium' | 'large' = 'medium';