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
23 lines
573 B
Plaintext
23 lines
573 B
Plaintext
import { ALIGNMENT, COLOR } from './common';
|
|
export interface Column {
|
|
name: string;
|
|
title: string;
|
|
alignment?: ALIGNMENT;
|
|
color?: COLOR;
|
|
length?: number;
|
|
minLen?: number;
|
|
maxLen?: number;
|
|
}
|
|
type TableLineDetailsKeys = 'left' | 'right' | 'mid' | 'other';
|
|
export type TableLineDetails = {
|
|
[key in TableLineDetailsKeys]: string;
|
|
};
|
|
export type TableStyleDetails = {
|
|
headerTop: TableLineDetails;
|
|
headerBottom: TableLineDetails;
|
|
tableBottom: TableLineDetails;
|
|
vertical: string;
|
|
rowSeparator?: TableLineDetails;
|
|
};
|
|
export {};
|