@helix-x/datagrid-ui - v0.1.2
    Preparing search index...

    Interface SortModelItem

    One entry in the sort model.

    The model is an ordered array: the first entry is the primary sort, and later entries break ties in the ones before them.

    const sortModel: SortModelItem[] = [
    { colId: 'status', sort: 'asc' },
    { colId: 'createdAt', sort: 'desc' },
    ];
    interface SortModelItem {
        colId: string;
        sort: SortDirection;
    }
    Index
    colId: string

    The column id to sort on.

    Direction to sort in.