timepicker-config.d.ts 589 B

1234567891011121314151617
  1. /**
  2. * A configuration service for the [`NgbTimepicker`](#/components/timepicker/api#NgbTimepicker) component.
  3. *
  4. * You can inject this service, typically in your root component, and customize the values of its properties in
  5. * order to provide default values for all the timepickers used in the application.
  6. */
  7. export declare class NgbTimepickerConfig {
  8. meridian: boolean;
  9. spinners: boolean;
  10. seconds: boolean;
  11. hourStep: number;
  12. minuteStep: number;
  13. secondStep: number;
  14. disabled: boolean;
  15. readonlyInputs: boolean;
  16. size: 'small' | 'medium' | 'large';
  17. }