Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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;
replyCount: number;
replyId?: string;
replyTo?: ProcessedTweet;
rootId?: string;
}

§Properties

§
author: ProcessedUser
[src]

投稿者

§
content: TweetNode[]
[src]

tweet本文

§
id: string
[src]

tweet id

§
posted: Date
[src]

投稿日時

§

引用元tweet

§
replyCount: number
[src]

返信数

§
replyId?: string
[src]

返信先tweetのid

§

返信先tweet

§
rootId?: string
[src]

self threadだった場合の、最初のtweetのid