17 lines
363 B
TypeScript
17 lines
363 B
TypeScript
|
|
/**
|
||
|
|
* Grid display settings interface
|
||
|
|
*/
|
||
|
|
export interface IGridSettings {
|
||
|
|
dayStartHour: number;
|
||
|
|
dayEndHour: number;
|
||
|
|
workStartHour: number;
|
||
|
|
workEndHour: number;
|
||
|
|
hourHeight: number;
|
||
|
|
snapInterval: number;
|
||
|
|
fitToWidth: boolean;
|
||
|
|
scrollToHour: number | null;
|
||
|
|
gridStartThresholdMinutes: number;
|
||
|
|
showCurrentTime: boolean;
|
||
|
|
showWorkHours: boolean;
|
||
|
|
}
|