3fd2b55406
This reverts commit 89eea5df52
.
12 lines
339 B
TypeScript
12 lines
339 B
TypeScript
namespace Entity {
|
|
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
|
|
}
|
|
}
|