refactor: use vanilla rendering

This commit is contained in:
Pihkaal
2024-01-25 22:11:31 +01:00
parent 089c29b579
commit 64fc73a05e
8 changed files with 250 additions and 81 deletions

View File

@@ -0,0 +1,7 @@
import { type Cell } from "./cell";
export interface TerminalElement {
readonly data: Array<Array<Cell>>;
readonly width: number;
readonly height: number;
}