Преглед изворни кода

Merge branch 'feat/pt-dev-master' into feat/pt-dev-4

Taichi Masuyama пре 4 година
родитељ
комит
c8c3aa85c5
1 измењених фајлова са 4 додато и 0 уклоњено
  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,
+};