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

26 lines (25 loc) 786 B
import { ClockPickerConfig } from '../interfaces'; export declare const hours: { '24h': number[]; '12h': number[]; }; export declare const config: (hoursScope: string) => { hours: any; minutes: number[]; }; export declare const defaultConfig: ClockPickerConfig; export declare const MODE_MINUTES = "minutes"; export declare const MODE_HOURS = "hours"; export declare const HOURS_MODE_AM = "AM"; export declare const HOURS_MODE_PM = "PM"; export declare const HOURS_SCOPE_24 = "24h"; export declare const HOURS_SCOPE_12 = "12h"; export declare const FORMAT_12 = "hour12"; export declare const FORMAT_24 = "hour24"; export declare const defaults: { hours: number; minutes: number; scope: string; is24: boolean; format: any; };