| 25 | import { Terminal, type TerminalRef } from './terminal/Terminal'; |
| 26 | |
| 27 | interface EditorPanelProps { |
| 28 | files?: FileMap; |
| 29 | unsavedFiles?: Set<string>; |
| 30 | editorDocument?: EditorDocument; |
| 31 | selectedFile?: string | undefined; |
| 32 | isStreaming?: boolean; |
| 33 | onEditorChange?: OnEditorChange; |
| 34 | onEditorScroll?: OnEditorScroll; |
| 35 | onFileSelect?: (value?: string) => void; |
| 36 | onFileSave?: OnEditorSave; |
| 37 | onFileReset?: () => void; |
| 38 | } |
| 39 | |
| 40 | const MAX_TERMINALS = 3; |
| 41 | const DEFAULT_TERMINAL_SIZE = 25; |
nothing calls this directly
no outgoing calls
no test coverage detected