mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-08-07 17:48:54 +00:00
#70 Pagination type definition
This commit is contained in:
@@ -22,6 +22,7 @@ export class NodePaging {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export class NodePagingList {
|
export class NodePagingList {
|
||||||
|
pagination: Pagination;
|
||||||
entries: MinimalNodeEntity[];
|
entries: MinimalNodeEntity[];
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -29,6 +30,14 @@ export class MinimalNodeEntity {
|
|||||||
entry: MinimalNodeEntryEntity;
|
entry: MinimalNodeEntryEntity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export class Pagination {
|
||||||
|
count: number;
|
||||||
|
hasMoreItems: boolean;
|
||||||
|
totalItems: number;
|
||||||
|
skipCount: number;
|
||||||
|
maxItems: number;
|
||||||
|
}
|
||||||
|
|
||||||
export class MinimalNodeEntryEntity {
|
export class MinimalNodeEntryEntity {
|
||||||
id: string;
|
id: string;
|
||||||
parentId: string;
|
parentId: string;
|
||||||
|
Reference in New Issue
Block a user