Skip to content

Commit

Permalink
fix(page): ProjectRelatedPage dosen't have either infobox* nor `s…
Browse files Browse the repository at this point in the history
…earch`
  • Loading branch information
takker99 committed May 5, 2024
1 parent c38ce80 commit 56c4e5e
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions response.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,20 @@ export interface RelatedPage extends
}

/** 外部プロジェクトの関連ページ */
export interface ProjectRelatedPage
extends Omit<RelatedPage, "linksLc" | "created" | "pageRank"> {
export interface ProjectRelatedPage extends
Pick<
BasePage,
| "id"
| "title"
| "image"
| "descriptions"
| "linked"
| "updated"
| "accessed"
> {
/** page title */
titleLc: StringLc;

created: number | null;

/** project name */
Expand Down

0 comments on commit 56c4e5e

Please sign in to comment.