aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/core/rest/component-pagination.model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/core/rest/component-pagination.model.ts')
-rw-r--r--client/src/app/core/rest/component-pagination.model.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/core/rest/component-pagination.model.ts b/client/src/app/core/rest/component-pagination.model.ts
index bcb73ed0f..59d70c1e8 100644
--- a/client/src/app/core/rest/component-pagination.model.ts
+++ b/client/src/app/core/rest/component-pagination.model.ts
@@ -4,7 +4,7 @@ export interface ComponentPagination {
4 totalItems: number 4 totalItems: number
5} 5}
6 6
7export type ComponentPaginationLight = Omit<ComponentPagination, 'totalItems'> 7export type ComponentPaginationLight = Omit<ComponentPagination, 'totalItems'> & { totalItems?: number }
8 8
9export function hasMoreItems (componentPagination: ComponentPagination) { 9export function hasMoreItems (componentPagination: ComponentPagination) {
10 // No results 10 // No results