瀏覽代碼

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,
+};