feat: work on windows resizing

This commit is contained in:
2026-04-23 09:11:01 +02:00
parent 9d181f3676
commit 3fb8e23c07
15 changed files with 1286 additions and 114 deletions

View File

@ -68,3 +68,10 @@ export interface SyncResult {
synced: number;
errors: string[];
}
export interface QuestStep {
index: number;
text: string;
images: string[];
launch_position: string | null;
}