Polish the PR, minor improvements

This commit is contained in:
Alexander Farber
2025-12-13 14:35:40 +01:00
parent 7a97fcd5f1
commit 4930a24d07
6 changed files with 42 additions and 28 deletions

View File

@@ -6,6 +6,15 @@
import type { SessionListItem } from '@qwen-code/qwen-code-core';
/**
* State for managing loaded sessions in the session picker.
*/
export interface SessionState {
sessions: SessionListItem[];
hasMore: boolean;
nextCursor?: number;
}
/**
* Page size for loading sessions.
*/