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

15 lines (14 loc) 768 B
import { ViewContainerRef, ElementRef, EventEmitter, OnInit } from '@angular/core'; import { AbstractValueAccessor } from '../classes/abstract-value-accessor'; import { ClockPickerConfig } from '../interfaces'; import { ClockPickerDialogService } from '../services/clock-picker-dialog.service'; export declare class ClockPickerDirective extends AbstractValueAccessor implements OnInit { private elementRef; private viewContainerRef; private clockPickerDialogService; constructor(elementRef: ElementRef, viewContainerRef: ViewContainerRef, clockPickerDialogService: ClockPickerDialogService); ngClockPickerConfig: ClockPickerConfig; ngClockPickerChange: EventEmitter<string>; onFocus(event: any): void; ngOnInit(): void; }