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

add new types in page operation interface

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

+ 2 - 0
packages/app/src/interfaces/page-operation.ts

@@ -7,3 +7,5 @@ export const PageActionType = {
   NormalizeParent: 'NormalizeParent',
 } as const;
 export type PageActionType = typeof PageActionType[keyof typeof PageActionType]
+export type IPageOperationProcessData = Partial<Record<PageActionType, {isProcessing: boolean}>>
+export type IPageOperationProcessInfo = Partial<Record<string, IPageOperationProcessData>>