Interface TabularRepCustomizationOptions

customize the Tabular Data

interface TabularRepCustomizationOptions {
    tableCellFormatter?: ((cells: string[][]) => string[][]);
    tableHeadingFormatter?: ((headings: string[]) => string[]);
}

Properties

tableCellFormatter?: ((cells: string[][]) => string[][])

option to customize the Table Cells

tableHeadingFormatter?: ((headings: string[]) => string[])

option to customize the Table Headers