Files
pihkaal-me/src/utils/terminal/cell.ts
2024-01-25 22:11:31 +01:00

10 lines
157 B
TypeScript

export type Cell = {
char: string;
} & CellStyle;
export type CellStyle = Partial<{
foreground: string;
background: string;
fontWeight: number;
}>;