Procházet zdrojové kódy

add new types in page operation interface

yohei0125 před 4 roky
rodič
revize
9028305765
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  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>>