Просмотр исходного кода

import IPageOperationProcessInfo at page interface

yohei0125 3 лет назад
Родитель
Сommit
e30293c82d
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      packages/app/src/interfaces/page.ts

+ 2 - 1
packages/app/src/interfaces/page.ts

@@ -1,5 +1,6 @@
 import { Ref, Nullable } from './common';
 import { Ref, Nullable } from './common';
 import { HasObjectId } from './has-object-id';
 import { HasObjectId } from './has-object-id';
+import { IPageOperationProcessInfo } from './page-operation';
 import { IRevision, HasRevisionShortbody } from './revision';
 import { IRevision, HasRevisionShortbody } from './revision';
 import { SubscriptionStatusType } from './subscription';
 import { SubscriptionStatusType } from './subscription';
 import { ITag } from './tag';
 import { ITag } from './tag';
@@ -43,7 +44,7 @@ export type PageGrant = typeof PageGrant[keyof typeof PageGrant];
 
 
 export type IPageHasId = IPage & HasObjectId;
 export type IPageHasId = IPage & HasObjectId;
 
 
-export type IPageForItem = Partial<IPageHasId & {isTarget?: boolean}>;
+export type IPageForItem = Partial<IPageHasId & {isTarget?: boolean, processInfo?: IPageOperationProcessInfo}>;
 
 
 export type IPageInfo = {
 export type IPageInfo = {
   isV5Compatible: boolean,
   isV5Compatible: boolean,