|
|
@@ -1,5 +1,4 @@
|
|
|
import { HasObjectId } from './has-object-id';
|
|
|
-import { HasPageId } from './has-page-id';
|
|
|
import { IUser } from './user';
|
|
|
|
|
|
export type IRevision = {
|
|
|
@@ -12,6 +11,10 @@ export type IRevision = {
|
|
|
|
|
|
export type IRevisionHasId = IRevision & HasObjectId;
|
|
|
|
|
|
+type HasPageId = {
|
|
|
+ pageId: string,
|
|
|
+};
|
|
|
+
|
|
|
export type IRevisionHasPageId = IRevisionHasId & HasPageId;
|
|
|
|
|
|
export type IRevisionsForPagination = {
|