Some ignored filles was missing

This commit is contained in:
Janus C. H. Knudsen 2026-02-03 00:02:25 +01:00
parent 7db22245e2
commit fd5ab6bc0d
268 changed files with 31970 additions and 4 deletions

23
wwwroot/js/managers/ViewManager.d.ts vendored Normal file
View file

@ -0,0 +1,23 @@
import { IEventBus } from '../types/CalendarTypes';
import { Configuration } from '../configurations/CalendarConfig';
export declare class ViewManager {
private eventBus;
private config;
private currentView;
private buttonListeners;
constructor(eventBus: IEventBus, config: Configuration);
private setupEventListeners;
private setupEventBusListeners;
private setupButtonHandlers;
private setupButtonGroup;
private getViewButtons;
private getWorkweekButtons;
private initializeView;
private changeView;
private changeWorkweek;
private updateAllButtons;
private updateButtonGroup;
private emitViewRendered;
private refreshCurrentView;
private isValidView;
}