Skip to content

Commit 56c4e5e

Browse files
committed
fix(page): ProjectRelatedPage dosen't have either infobox* nor search
1 parent c38ce80 commit 56c4e5e

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

response.ts

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,20 @@ export interface RelatedPage extends
151151
}
152152

153153
/** 外部プロジェクトの関連ページ */
154-
export interface ProjectRelatedPage
155-
extends Omit<RelatedPage, "linksLc" | "created" | "pageRank"> {
154+
export interface ProjectRelatedPage extends
155+
Pick<
156+
BasePage,
157+
| "id"
158+
| "title"
159+
| "image"
160+
| "descriptions"
161+
| "linked"
162+
| "updated"
163+
| "accessed"
164+
> {
165+
/** page title */
166+
titleLc: StringLc;
167+
156168
created: number | null;
157169

158170
/** project name */

0 commit comments

Comments
 (0)