UNPKG

@omnia/foundation

Version:

Provide omnia foundation typings and tooling work on client side for omnia extension.

24 lines (23 loc) 718 B
import { OnInit, EventEmitter } from '@angular/core'; import { LocaleService } from "../services/LocaleService"; export declare class Calendar implements OnInit { private localeService; dateValue: any; dateFormat: string; showIcon: boolean; showTime: boolean; minDate: Date; maxDate: Date; readonlyInput: boolean; utc: boolean; onFocus: EventEmitter<any>; onBlur: EventEmitter<any>; dateValueChange: EventEmitter<any>; static templateGuid: string; locale: any; constructor(localeService: LocaleService); ngOnInit(): void; onModelChange(modelValue: any): void; focus: (event: any) => void; blur: (event: any) => void; }