You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-19 15:06:20 +00:00
13 lines
402 B
TypeScript
13 lines
402 B
TypeScript
import { IRoomSession } from './IRoomSession';
|
|
|
|
export interface IRoomSessionManager
|
|
{
|
|
init(): Promise<void>;
|
|
getSession(id: number): IRoomSession;
|
|
createSession(roomId: number, password?: string): boolean;
|
|
startSession(session: IRoomSession): boolean;
|
|
removeSession(id: number, openLandingView?: boolean): void;
|
|
tryRestoreSession(): boolean;
|
|
viewerSession: IRoomSession;
|
|
}
|