fixed some lint issues
This commit is contained in:
parent
566f5dac92
commit
969cbad7ac
14 changed files with 99 additions and 29 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue