export namespace SortMethods { const ASC: string; const DESC: string; const NONE: string; } export function defaultSortFunction(sortBy: string, sortMethod: { /** * Сортировка по возрастанию */ ASC: string; /** * Сортировка по убыванию */ DESC: string; /** * Без сортировки */ NONE: string; }): Array; //# sourceMappingURL=sort.d.ts.map