From edab44eca0437d2db84cabe5973e8863f98f0e01 Mon Sep 17 00:00:00 2001 From: takker99 <37929109+takker99@users.noreply.github.com> Date: Sun, 14 Apr 2024 07:49:47 +0900 Subject: [PATCH] fix(twitter): `description` may be optional --- response.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/response.ts b/response.ts index 04041d8..8e42dbd 100644 --- a/response.ts +++ b/response.ts @@ -301,7 +301,7 @@ export interface ImportedData { /** the response type of /api/embed-text/twitter */ export interface TweetInfo { /** Tweet本文 */ - description: string; + description?: string; /** Tweet投稿者の表示名 */ screenName: string;