feat: add kanban board

This commit is contained in:
2026-07-15 01:12:40 +05:00
parent 0454a32d8c
commit 35465f581f
12 changed files with 718 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
import { AppError } from "@/error";
import { KanbanBoard } from "./buildKanbanBoard";
/** Host → webview. */
export type KanbanOutboundMessage =
| { type: "state"; board: KanbanBoard }
| { type: "error"; error: AppError };