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

Merge branch 'dev/5.0.x' into feat/pt-dev-master

Taichi Masuyama пре 4 година
родитељ
комит
565cd3107f
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 IPageHasId = IPage & {
+  _id: string,
+};