UNPKG

@abaplint/runtime

Version:
11 lines (10 loc) 311 B
import { FieldSymbol, Table } from "../types"; export interface ISortOptions { descending?: boolean; skipSortedCheck?: boolean; by?: { component: string; descending?: boolean; }[]; } export declare function sort(input: Table | FieldSymbol | any[], options?: ISortOptions): void;