fix(app): preserve file search results while loading (#43836)

This commit is contained in:
Brendan Allan
2026-08-21 16:52:45 +08:00
committed by GitHub
parent ca1b239413
commit aa7eda570f
3 changed files with 41 additions and 3 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ export interface MockServerConfig {
questions?: unknown[] | (() => unknown[])
fileList?: (path: string) => unknown | Promise<unknown>
fileContent?: (path: string) => unknown | Promise<unknown>
findFiles?: (input: { query: string; dirs?: string; limit?: number }) => unknown
findFiles?: (input: { query: string; dirs?: string; limit?: number }) => unknown | Promise<unknown>
sessionStatus?: Record<string, unknown> | (() => Record<string, unknown>)
}