host
The host part of the url, like 'mastodon.ryanatkn.com'.
type
string | nullid
The status id to fetch, like '110702983310017651'.
type
string | nullinclude_ancestors?
Whether to fetch and display the ancestors in the status context.
type
booleanoptional
include_replies?
Whether to fetch and display replies aka descendants in the status context.
type
booleanoptional
cache?
Optional API result cache.
type
FetchValueCache | null | undefinedoptional
log?
Optional logger for network calls.
type
Logger | undefinedoptional
loading?
type
boolean | undefinedoptional bindable
item?
type
MastodonStatus | null | undefinedoptional bindable
status_context?
type
MastodonStatusContext | null | undefinedoptional bindable
replies?
type
Array<MastodonStatus> | null | undefinedoptional bindable
reply_filter?
Get a list of rules that controls whether replies are shown or not. If omitted, all replies are included.
type
ReplyFilter | Array<ReplyFilter> | CreateReplyFilters | nulloptional
load_time?
type
number | undefinedoptional bindable
children
type
Snippet<
[
{
/**
* `null` here is a failed loading condition.
*/
item: MastodonStatus | null | undefined;
/**
* `null` here is a failed loading condition.
*/
status_context: MastodonStatusContext | null | undefined;
/**
* `null` here is a failed loading condition for `item` or `status_context`.
*/
replies: Array<MastodonStatus> | null | undefined;
load: () => Promise<void>;
loading: boolean | undefined;
load_time: number | undefined;
},
]
>