functional-models
    Preparing search index...

    Interface SortStatement

    Defines how a sort should happen. Which column and what order.

    interface SortStatement {
        key: string;
        order: SortOrder;
    }
    Index

    Properties

    Properties

    key: string

    The property's key/name. Also could be a "column"

    order: SortOrder

    Ascending or Descending sort.