chore: File cleanup

This commit is contained in:
LukeGus
2025-11-15 02:40:28 -06:00
parent d425cee6e2
commit 20ef98957d
41 changed files with 88 additions and 412 deletions

View File

@@ -329,12 +329,11 @@ export interface TabContextTab {
initialTab?: string;
}
// Split Screen Layout Types
export type SplitLayout = "2h" | "2v" | "3l" | "3r" | "3t" | "4grid";
export interface SplitConfiguration {
layout: SplitLayout;
positions: Map<number, number>; // position index -> tab ID
positions: Map<number, number>;
}
export interface SplitLayoutOption {