2023-09-23 18:49:47 +02:00
|
|
|
namespace Entity {
|
2023-09-25 01:20:03 +02:00
|
|
|
export type StatusParams = {
|
|
|
|
text: string;
|
|
|
|
in_reply_to_id: string | null;
|
|
|
|
media_ids: Array<string> | null;
|
|
|
|
sensitive: boolean | null;
|
|
|
|
spoiler_text: string | null;
|
|
|
|
visibility: "public" | "unlisted" | "private" | "direct";
|
|
|
|
scheduled_at: string | null;
|
|
|
|
application_id: string;
|
|
|
|
};
|
2023-09-23 18:49:47 +02:00
|
|
|
}
|