2023-09-23 18:49:47 +02:00
|
|
|
namespace Entity {
|
2023-09-25 01:49:57 +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' | null
|
|
|
|
scheduled_at: string | null
|
|
|
|
application_id: number | null
|
|
|
|
}
|
2023-09-23 18:49:47 +02:00
|
|
|
}
|