ProcessedTweet
import type { ProcessedTweet } from "https://raw.githubusercontent.com/takker99/scrapbox-url-customizer/0.4.3/mod.ts";
加工したTweet data
interface ProcessedTweet {
author: ProcessedUser;
content: TweetNode[];
id: string;
posted: Date;
quote?: ProcessedTweet;
replyCount: number;
replyId?: string;
replyTo?: ProcessedTweet;
rootId?: string;
}