gantri-components 2.187.2 → 2.187.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4,5 +4,7 @@ interface MappedSortItem<SortingField = string> {
|
|
|
4
4
|
label: string;
|
|
5
5
|
value: SortInfo<SortingField>;
|
|
6
6
|
}
|
|
7
|
+
export declare const ascendingSuffix = "(Asc)";
|
|
8
|
+
export declare const descendingSuffix = "(Desc)";
|
|
7
9
|
export declare const getSortOptions: <SortingField = string>(sortingOptions?: TableSortField<SortingField>[]) => MappedSortItem<SortingField>[];
|
|
8
10
|
export {};
|