import { IRoomSession } from './IRoomSession'; export interface IRoomSessionManager { init(): Promise; getSession(id: number): IRoomSession; createSession(roomId: number, password?: string): boolean; startSession(session: IRoomSession): boolean; removeSession(id: number, openLandingView?: boolean): void; tryRestoreSession(): boolean; viewerSession: IRoomSession; }