Some ignored filles was missing
This commit is contained in:
parent
7db22245e2
commit
fd5ab6bc0d
268 changed files with 31970 additions and 4 deletions
18
wwwroot/js/factories/ManagerFactory.d.ts
vendored
Normal file
18
wwwroot/js/factories/ManagerFactory.d.ts
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import { IEventBus } from '../types/CalendarTypes';
|
||||
import { CalendarManagers } from '../types/ManagerTypes';
|
||||
/**
|
||||
* Factory for creating and managing calendar managers with proper dependency injection
|
||||
*/
|
||||
export declare class ManagerFactory {
|
||||
private static instance;
|
||||
private constructor();
|
||||
static getInstance(): ManagerFactory;
|
||||
/**
|
||||
* Create all managers with proper dependency injection
|
||||
*/
|
||||
createManagers(eventBus: IEventBus): CalendarManagers;
|
||||
/**
|
||||
* Initialize all managers in the correct order
|
||||
*/
|
||||
initializeManagers(managers: CalendarManagers): Promise<void>;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue