fixed some lint issues

This commit is contained in:
Boki 2025-06-23 22:58:42 -04:00
parent 566f5dac92
commit 969cbad7ac
14 changed files with 99 additions and 29 deletions

View file

@ -41,9 +41,14 @@ export async function checkSessions(handler: BaseHandler): Promise<{
/**
* Create a single session for a specific session ID
*/
interface CreateSessionInput {
sessionId?: string;
sessionType?: string;
}
export async function createSingleSession(
handler: BaseHandler,
input: any
input: CreateSessionInput
): Promise<{ sessionId: string; status: string; sessionType: string }> {
const { sessionId: _sessionId, sessionType } = input || {};
const _sessionManager = QMSessionManager.getInstance();