MCPcopy
hub / github.com/stackblitz/bolt.new / EditorPanelProps

Interface EditorPanelProps

app/components/workbench/EditorPanel.tsx:27–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25import { Terminal, type TerminalRef } from './terminal/Terminal';
26
27interface 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
40const MAX_TERMINALS = 3;
41const DEFAULT_TERMINAL_SIZE = 25;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected