@omnia/foundation
Version:
Provide omnia foundation typings and tooling work on client side for omnia extension
16 lines (15 loc) • 498 B
TypeScript
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;
dateValueChange: EventEmitter<any>;
static templateGuid: string;
locale: any;
constructor(localeService: LocaleService);
ngOnInit(): void;
onModelChange(modelValue: any): void;
}