diff --git a/src/objects-list/objects-list-hooks.ts b/src/objects-list/objects-list-hooks.ts index 43b7231..ca5df5d 100644 --- a/src/objects-list/objects-list-hooks.ts +++ b/src/objects-list/objects-list-hooks.ts @@ -36,13 +36,13 @@ export interface Pager { pageSize: number; } -type GetRows = ( +export type GetRows = ( search: string, paging: TablePagination, sorting: TableSorting ) => Promise<{ objects: Obj[]; pager: Pager }>; -type GetAllIds = ( +export type GetAllIds = ( search: string, sorting: TableSorting ) => Promise;