@timlassiter11/yatl
    Preparing search index...

    Interface ColumnState<T>

    Represents the current state of a column.

    interface ColumnState<T> {
        field: NestedKeyOf<T>;
        sortState?: null | SortState;
        visible: boolean;
        width?: null | number;
    }

    Type Parameters

    • T
    Index

    Properties

    field: NestedKeyOf<T>

    The unique field name of the column.

    sortState?: null | SortState

    The current sort order of the column.

    visible: boolean

    The current visibility of the column.

    width?: null | number

    The currently set width of the column in pixels.