The data passed to a plugin's column APIs

interface ColumnApi<T extends Table = Table> {
    column: Column<DataTypeOf<T>>;
    table: T;
}

Type Parameters

Properties

Properties

column: Column<DataTypeOf<T>>
table: T