Sfoglia il codice sorgente

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

Taichi Masuyama 4 anni fa
parent
commit
5c02c38947
1 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  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,
+};