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
29 lines
1.4 KiB
Plaintext
29 lines
1.4 KiB
Plaintext
import { CharLengthDict, COLOR, Dictionary, Row } from '../models/common';
|
|
import { ComputedColumn } from '../models/external-table';
|
|
import { Column } from '../models/internal-table';
|
|
export declare const cellText: (text: string | number) => string;
|
|
export interface RowOptionsRaw {
|
|
color?: string;
|
|
separator?: boolean;
|
|
}
|
|
export interface RowOptions {
|
|
color: COLOR;
|
|
separator: boolean;
|
|
}
|
|
export declare const convertRawRowOptionsToStandard: (options?: RowOptionsRaw) => RowOptions | undefined;
|
|
export declare const createTableHorizontalBorders: ({ left, mid, right, other, }: {
|
|
left: string;
|
|
mid: string;
|
|
right: string;
|
|
other: string;
|
|
}, column_lengths: number[]) => string;
|
|
export declare const createColumFromOnlyName: (name: string) => Column;
|
|
export declare const createColumFromComputedColumn: (column: ComputedColumn) => Column;
|
|
export declare const createRow: (color: COLOR, text: Dictionary, separator: boolean) => Row;
|
|
export declare const findLenOfColumn: (column: Column, rows: Row[], charLength?: CharLengthDict) => number;
|
|
export declare const renderTableHorizontalBorders: (style: any, column_lengths: number[]) => string;
|
|
export declare const createHeaderAsRow: (createRowFn: any, columns: Column[]) => Row;
|
|
export declare const getWidthLimitedColumnsArray: (columns: Column[], row: Row, charLength?: CharLengthDict) => {
|
|
[key: string]: string[];
|
|
};
|