builder.io 1.6.59 → 1.6.61

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,26 @@
1
+ /**
2
+ * Simple terminal buffer that handles basic control sequences
3
+ * to properly represent what would be shown in a real terminal
4
+ */
5
+ export declare class TerminalBuffer {
6
+ private lines;
7
+ private currentLine;
8
+ private currentColumn;
9
+ private maxLines;
10
+ constructor(maxLines?: number);
11
+ write(data: string): void;
12
+ private ensureLineExists;
13
+ getContent(): string;
14
+ clear(): void;
15
+ /**
16
+ * Get current cursor position for testing/debugging
17
+ */
18
+ getCursorPosition(): {
19
+ line: number;
20
+ column: number;
21
+ };
22
+ /**
23
+ * Get the current number of lines for testing/debugging
24
+ */
25
+ getLineCount(): number;
26
+ }
@@ -0,0 +1 @@
1
+ export {};