Calendar/wwwroot/js/configuration/ICalendarConfig.d.ts

22 lines
539 B
TypeScript
Raw Permalink Normal View History

2026-02-03 00:02:25 +01:00
/**
* Main calendar configuration interface
*/
export interface ICalendarConfig {
scrollbarWidth: number;
scrollbarColor: string;
scrollbarTrackColor: string;
scrollbarHoverColor: string;
scrollbarBorderRadius: number;
allowDrag: boolean;
allowResize: boolean;
allowCreate: boolean;
apiEndpoint: string;
dateFormat: string;
timeFormat: string;
enableSearch: boolean;
enableTouch: boolean;
defaultEventDuration: number;
minEventDuration: number;
maxEventDuration: number;
}