UNPKG

ngx-mat-tui-calendar

Version:

Angular Material Design wrapper, supporting theming, for the Toast UI Calendar, suitable for web-based scheduling, events, appointments, and day planner applications.

44 lines (43 loc) 1.07 kB
export declare class LocalDate { date: Date; constructor(args: any); static convertToJsDate(args: any): Date; static parse_YYYYMMDD(str: any): { year: number; month: number; day: number; }; static convertNumbersToDate({ year, month, day, hours, minutes, seconds, milliseconds }: { year: any; month: any; day: any; hours: any; minutes: any; seconds: any; milliseconds: any; }): Date; static convertDateToNumbers(date: any): { year: any; month: any; day: any; hours: any; minutes: any; seconds: any; milliseconds: any; }; get(): { year: any; month: any; day: any; hours: any; minutes: any; seconds: any; milliseconds: any; }; toMsgFormat(): string; toYYYYMMDD(): string; toDisplayDateFormat(): string; toDisplayFormat(): string; toDate(): Date; clearTime(): void; }