We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ProjectRelatedPage
infobox*
search
1 parent c38ce80 commit 56c4e5eCopy full SHA for 56c4e5e
response.ts
@@ -151,8 +151,20 @@ export interface RelatedPage extends
151
}
152
153
/** 外部プロジェクトの関連ページ */
154
-export interface ProjectRelatedPage
155
- extends Omit<RelatedPage, "linksLc" | "created" | "pageRank"> {
+export interface ProjectRelatedPage extends
+ 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
+
168
created: number | null;
169
170
/** project name */
0 commit comments