UNPKG

console-table-printer

Version:
15 lines (14 loc) 369 B
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; }