* Get a line from native WASM scrollback buffer * Implements IScrollbackProvider
(offset: number)
| 1124 | * Implements IScrollbackProvider |
| 1125 | */ |
| 1126 | public getScrollbackLine(offset: number): GhosttyCell[] | null { |
| 1127 | if (!this.wasmTerm) return null; |
| 1128 | return this.wasmTerm.getScrollbackLine(offset); |
| 1129 | } |
| 1130 | |
| 1131 | /** |
| 1132 | * Get scrollback length from native WASM |
nothing calls this directly
no test coverage detected