Interface IBuilderAdapterRankingProps

interface IBuilderAdapterRankingProps {
    columns?: (string | IImposeColumnBuilder | INestedBuilder | IWeightedSumBuilder | IReduceBuilder | IScriptedBuilder)[];
    groupBy?: string | string[];
    sortBy?: string | {
        asc: boolean | "desc" | "asc";
        column: string;
    } | (string | {
        asc: boolean | "desc" | "asc";
        column: string;
    })[];
}

Properties

groupBy?: string | string[]
sortBy?: string | {
    asc: boolean | "desc" | "asc";
    column: string;
} | (string | {
    asc: boolean | "desc" | "asc";
    column: string;
})[]

Type declaration

  • asc: boolean | "desc" | "asc"
  • column: string