wip: tabs

This commit is contained in:
2026-01-19 21:33:12 -08:00
parent 70fcaa8650
commit 2f4bfd4183
7 changed files with 703 additions and 117 deletions
+8
View File
@@ -1,3 +1,11 @@
export interface TerminalLine {
id: string;
type: "user" | "assistant" | "system" | "tool" | "error";
content: string;
timestamp: Date;
toolName?: string;
}
export interface SystemInitMessage {
type: "system";
subtype: "init";