Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
15 lines
365 B
Plaintext
15 lines
365 B
Plaintext
import { ALIGNMENTS, COLORS } from '../utils/table-constants';
|
|
export type ALIGNMENT = typeof ALIGNMENTS[number];
|
|
export type COLOR = typeof COLORS[number];
|
|
export interface Dictionary {
|
|
[key: string]: any;
|
|
}
|
|
export interface CharLengthDict {
|
|
[key: string]: number;
|
|
}
|
|
export interface Row {
|
|
color: COLOR;
|
|
separator: boolean;
|
|
text: Dictionary;
|
|
}
|