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
10 lines (9 loc) • 437 B
TypeScript
import { HoursMode } from '../classes/HoursMode';
export declare function convertToTimeFormat(value: number): string;
export declare function parseTimeString(time: string): {
hours: number;
minutes: number;
scope: string;
};
export declare function determineScope(hour: number): string;
export declare function getDisplayTime(hours: number, minutes: number, mode: HoursMode, is24: boolean, format?: string): string;