Sha256: 97ec7bf43eecebb01e19665ae74ea2f29f9fd9ab978e23717094126e7069ce1a
Contents?: true
Size: 1.24 KB
Versions: 21
Compression:
Stored size: 1.24 KB
Contents
import { 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; } export interface RowOptions { color: COLOR; } export declare const convertRawRowOptionsToStandard: (options?: RowOptionsRaw | undefined) => 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) => Row; export declare const findLenOfColumn: (column: Column, rows: Row[]) => 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) => { [key: string]: string[]; };
Version data entries
21 entries across 21 versions & 1 rubygems