소스 검색

fix lint errors

Yuki Takei 4 년 전
부모
커밋
596fedc2b8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/app/src/interfaces/page.ts

+ 1 - 1
packages/app/src/interfaces/page.ts

@@ -45,7 +45,7 @@ export type IPageInfo = {
   isLiked?: boolean,
 }
 
-export type IPageWithMeta<M = {}> = {
+export type IPageWithMeta<M = Record<string, unknown>> = {
   pageData: IPageHasId,
   pageMeta?: Partial<IPageInfo> & M,
 };