Jelajahi Sumber

Merge branch 'feat/pt-dev-4' into imprv/commonize-fulltext-and-custom-search

Taichi Masuyama 4 tahun lalu
induk
melakukan
5c02c38947
1 mengubah file dengan 4 tambahan dan 0 penghapusan
  1. 4 0
      packages/app/src/interfaces/page.ts

+ 4 - 0
packages/app/src/interfaces/page.ts

@@ -32,3 +32,7 @@ export type IPage = {
 }
 }
 
 
 export type IPageForItem = Partial<IPage & {isTarget?: boolean} & HasObjectId>;
 export type IPageForItem = Partial<IPage & {isTarget?: boolean} & HasObjectId>;
+
+export type IPageHasId = IPage & {
+  _id: string,
+};