Interface TableColumn

Element representing a single column for a table

interface TableColumn {
    name: string;
}

Properties

Properties

name: string

A string representing the unique caption of the table column. This is what shall be displayed in the header row in the UI, and is referenced through functions. This name shall be unique per table.