jam411 3 лет назад
Родитель
Сommit
2a2915a415
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      packages/core/src/interfaces/revision.ts

+ 1 - 1
packages/core/src/interfaces/revision.ts

@@ -18,7 +18,7 @@ type HasPageId = {
 export type IRevisionHasPageId = IRevisionHasId & HasPageId;
 export type IRevisionHasPageId = IRevisionHasId & HasPageId;
 
 
 export type IRevisionsForPagination = {
 export type IRevisionsForPagination = {
-  revisions: IRevision[], // revisions in one pagination
+  revisions: IRevisionHasPageId[], // revisions in one pagination
   totalCounts: number // total counts
   totalCounts: number // total counts
 }
 }