ng-devui
Version:
DevUI components based on Angular
21 lines (20 loc) • 389 B
TypeScript
export interface DevuiCalendarDateItem {
day: string;
date: Date;
isActive: boolean;
inMonth: boolean;
isToday: boolean;
isInRange?: boolean;
isDisable?: boolean;
}
export interface DateConfig {
dateConverter: any;
min: Date;
max: Date;
format: {
date: string;
time: string;
month: string;
year: string;
};
}