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
14 lines (13 loc) • 392 B
TypeScript
import { Observable } from 'rxjs';
export declare class HoursScope {
private _value;
private _hoursScopeChangeEmitter;
static isHoursScope24(scope: string): boolean;
constructor(is24: boolean, scope: string);
readonly hoursScopeChanged: Observable<{
current: string;
next: string;
}>;
value: string;
readonly isScope24: boolean;
}