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.
2 parents 7b3ec71 + 56c4e5e commit ce13edaCopy full SHA for ce13eda
response.ts
@@ -147,12 +147,24 @@ export interface RelatedPage extends
147
148
infoboxDisableLinks: string[];
149
150
- search: SearchQuery;
+ search?: SearchQuery;
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