Interface TabularRepCustomizationOptions

customize the Tabular Data

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

Properties

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

option to customize the Table Cells

Type declaration

    • (cells): string[][]
    • Parameters

      • cells: string[][]

      Returns string[][]

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

option to customize the Table Headers

Type declaration

    • (headings): string[]
    • Parameters

      • headings: string[]

      Returns string[]