7 lines
122 B
TypeScript
7 lines
122 B
TypeScript
export interface CalendarConfig {
|
|
months: string[]
|
|
monthsPerYear: number
|
|
daysPerMonth: number
|
|
// todayDate: any
|
|
}
|