UNPKG

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

25 lines (24 loc) 791 B
import { TimeConfig, SelectedTime } from '../interfaces'; import { Mode } from './Mode'; import { HoursScope } from './HoursScope'; import { HoursMode } from './HoursMode'; export declare class Time { private _selectedHours; private _selectedMinutes; private _hoursScope; private _hoursMode; private _mode; private _is24; private _format; static getConcurrentScopeValue(hour: number, currentScope: string, nextScope: string): number; constructor(initialConfig?: TimeConfig); private init; readonly selected: SelectedTime; readonly is24: boolean; readonly Mode: Mode; readonly HoursScope: HoursScope; readonly HoursMode: HoursMode; minutes: number; hours: number; readonly displayTime: string; }