10 lines
157 B
TypeScript
10 lines
157 B
TypeScript
export type Cell = {
|
|
char: string;
|
|
} & CellStyle;
|
|
|
|
export type CellStyle = Partial<{
|
|
foreground: string;
|
|
background: string;
|
|
fontWeight: number;
|
|
}>;
|