mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
add missing type decl
This commit is contained in:
+1
-1
@@ -321,7 +321,7 @@ export class InputHandler implements IInputHandler {
|
||||
let bufferRow: [number, string, number, number][] = buffer.lines.get(buffer.y + buffer.ybase);
|
||||
|
||||
this._terminal.updateRange(buffer.y);
|
||||
for (let stringPosition = start; stringPosition < end; ++stringPosition) {
|
||||
for (let stringPosition: number = start; stringPosition < end; ++stringPosition) {
|
||||
char = data.charAt(stringPosition);
|
||||
code = data.charCodeAt(stringPosition);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user