list of interfaces by feature name that consumers may provide alternative implementation for

interface TableFeatures {
    columnOrder: TableMeta;
    columnVisibility: TableMeta<unknown>;
    [key: string]: unknown;
}

Hierarchy

  • Record<string, unknown | undefined>
    • TableFeatures

Indexable

  • [key: string]: unknown

Properties

columnOrder: TableMeta

interface for the table meta of a "column order plugin"

columnVisibility: TableMeta<unknown>

interface for the table meta of a "column visibility plugin"