Jelajahi Sumber

remove I ftom type name

yohei0125 4 tahun lalu
induk
melakukan
60c1a09193
1 mengubah file dengan 2 tambahan dan 2 penghapusan
  1. 2 2
      packages/app/src/interfaces/page-operation.ts

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

@@ -1,4 +1,4 @@
-export const IPageActionType = {
+export const PageActionType = {
   Rename: 'Rename',
   Duplicate: 'Duplicate',
   Delete: 'Delete',
@@ -6,4 +6,4 @@ export const IPageActionType = {
   Revert: 'Revert',
   NormalizeParent: 'NormalizeParent',
 } as const;
-export type IPageActionType = typeof IPageActionType[keyof typeof IPageActionType]
+export type PageActionType = typeof PageActionType[keyof typeof PageActionType]