Add file search to the edit box

This commit is contained in:
Louis Knight-Webb
2025-06-17 23:41:24 -04:00
parent 5d44865a5e
commit 3ad567cd1c
11 changed files with 652 additions and 325 deletions

View File

@@ -11,6 +11,10 @@ export type Project = { id: string, name: string, git_repo_path: string, created
export type UpdateProject = { name: string | null, git_repo_path: string | null, };
export type SearchResult = { path: string, is_file: boolean, match_type: SearchMatchType, };
export type SearchMatchType = "FileName" | "DirectoryName" | "FullPath";
export type CreateTask = { project_id: string, title: string, description: string | null, };
export type TaskStatus = "todo" | "inprogress" | "inreview" | "done" | "cancelled";