@anzusystems/common-admin 1.47.0-beta.63 → 1.47.0-beta.64

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.
@@ -3567,7 +3567,10 @@ export declare function createDatatableColumnsConfig(config: ColumnConfig[], col
3567
3567
  }[];
3568
3568
  columnsVisible: ComputedRef<any>;
3569
3569
  columnsHidden: Ref<string[], string[]>;
3570
- updateSortBy: (sortBy: any) => void;
3570
+ updateSortBy: (sortBy: {
3571
+ key: string;
3572
+ order: "asc" | "desc";
3573
+ } | undefined) => void;
3571
3574
  pagination: Pagination;
3572
3575
  };
3573
3576