ng-clock-picker-lib-voova
Version:
This is a customize version from the original https://jedrzejiwanicki.github.io/ng-clockpicker, Original function will not work the same
15 lines (14 loc) • 540 B
TypeScript
import { OnInit } from '@angular/core';
import { ClockPickerService } from '../../services/clock-picker.service';
export declare class HoursModePanelComponent implements OnInit {
clockPickerService: ClockPickerService;
hoursModeOptions: string[];
hoursScopeOptions: string[];
readonly hoursMode: string;
readonly hoursScope: string;
readonly selectedIndex: string;
readonly options: string[];
toggleMode(): void;
constructor(clockPickerService: ClockPickerService);
ngOnInit(): void;
}