| 123456789101112131415 |
- export const PageActionType = {
- Rename: 'Rename',
- Duplicate: 'Duplicate',
- Delete: 'Delete',
- DeleteCompletely: 'DeleteCompletely',
- Revert: 'Revert',
- NormalizeParent: 'NormalizeParent',
- } as const;
- export type PageActionType = typeof PageActionType[keyof typeof PageActionType]
- export type IPageOperationProcessData = Partial<{
- [key in PageActionType]: {isProcessable: boolean}
- }>
- export type IPageOperationProcessInfo = {
- [pageId: string]: IPageOperationProcessData,
- }
|