@wisemen/vue-core-api-utils 2.0.4 → 2.0.5
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.
- package/dist/index.d.mts +1 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -837,14 +837,10 @@ declare class QueryClient<TQueryKeys extends object> {
|
|
|
837
837
|
}
|
|
838
838
|
//#endregion
|
|
839
839
|
//#region src/utils/sort/sort.utils.d.ts
|
|
840
|
-
declare enum SortDirectionDto {
|
|
841
|
-
ASC = "asc",
|
|
842
|
-
DESC = "desc",
|
|
843
|
-
}
|
|
844
840
|
declare class SortUtil {
|
|
845
841
|
static toDto<SortKey extends string, QueryKey>(sort: Sort<SortKey>[], sortKeyMap: Record<SortKey, QueryKey>): {
|
|
846
842
|
key: QueryKey;
|
|
847
|
-
order:
|
|
843
|
+
order: any;
|
|
848
844
|
}[];
|
|
849
845
|
}
|
|
850
846
|
//#endregion
|