소스 검색

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