Some ignored filles was missing
This commit is contained in:
parent
7db22245e2
commit
fd5ab6bc0d
268 changed files with 31970 additions and 4 deletions
22
wwwroot/js/configurations/GridSettings.d.ts
vendored
Normal file
22
wwwroot/js/configurations/GridSettings.d.ts
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
/**
|
||||
* 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;
|
||||
}
|
||||
/**
|
||||
* Grid settings utility functions
|
||||
*/
|
||||
export declare namespace GridSettingsUtils {
|
||||
function isValidSnapInterval(interval: number): boolean;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue