Răsfoiți Sursa

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

Taichi Masuyama 4 ani în urmă
părinte
comite
5c02c38947
1 a modificat fișierele cu 4 adăugiri și 0 ștergeri
  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 IPageHasId = IPage & {
+  _id: string,
+};