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 bbae9fd + 1297c4a commit 288564fCopy full SHA for 288564f
api/response.ts
@@ -189,3 +189,15 @@ export interface ImportedData<hasMetadata extends true | false = false> {
189
/** pages importing to a project */
190
pages: hasMetadata extends true ? ImportedPage[] : ImportedLightPage[];
191
}
192
+
193
+/** the response type of /api/embed-text/twitter */
194
+export interface TweetInfo {
195
+ /** Tweet本文 */
196
+ description: string;
197
+ /** Tweet投稿者のuser name*/
198
+ userName: string;
199
+ /** Tweet投稿者の表示名 */
200
+ screenName: string;
201
+ /** Tweetに添付された画像 */
202
+ images: string[];
203
+}
0 commit comments