refactor: use vanilla rendering
This commit is contained in:
9
src/utils/terminal/cell.ts
Normal file
9
src/utils/terminal/cell.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export type Cell = {
|
||||
char: string;
|
||||
} & CellStyle;
|
||||
|
||||
export type CellStyle = Partial<{
|
||||
foreground: string;
|
||||
background: string;
|
||||
fontWeight: number;
|
||||
}>;
|
||||
Reference in New Issue
Block a user