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.
1 parent 75f3cbc commit 7fe6fedCopy full SHA for 7fe6fed
scrapbox.d.ts
@@ -153,3 +153,18 @@ export type UserResponse =
153
emacsBinding: boolean;
154
};
155
} & UserInfo);
156
+
157
+/** the response type of https://scrapbox.io/api/pages/:projectname/search/titles */
158
+export type LinksResponse =
159
+ | NotFoundError
160
+ | NotMemberError
161
+ | {
162
+ message: "Invalid pageId";
163
+ }
164
165
+ /** page id */ id: string;
166
+ /** page title */ title: string;
167
+ /** 画像が存在するかどうか */ hasIcon: boolean;
168
+ /** ページの更新日時 */ updated: number;
169
+ /** ページ内のリンク */ links: string[];
170
+ }[];
0 commit comments