8 lines
164 B
TypeScript
8 lines
164 B
TypeScript
import { type Cell } from "./cell";
|
|
|
|
export interface TerminalElement {
|
|
readonly data: Array<Array<Cell>>;
|
|
readonly width: number;
|
|
readonly height: number;
|
|
}
|