export interface ITimeOptions {
    hasHour: boolean;
    hasMinute: boolean;
    hasSecond: boolean;
    use12Hours: boolean;
}
