Interface Sort<T>

Define how the query's sort operation should be performed using the available methods.

interface Sort<T> {
    byCreationTime(ascending?): Sorting<T>;
    byId(ascending?): Sorting<T>;
    byProperty<K>(property, ascending?): Sorting<T>;
    byUpdateTime(ascending?): Sorting<T>;
}

Type Parameters

  • T

Methods