Interface ColumnProvider

A column provider. Is called to build columns for a dataset.

interface ColumnProvider {
    getColumns(): Promise<Column[]>;
}

Methods

Methods

  • This function is invoked by a TableModel implementation after the dataset is initialized.

    Returns Promise<Column[]>

    columns to shown in a table.

Generated using TypeDoc