hippofish/packages/megalodon/src/entities/status_params.ts

13 lines
339 B
TypeScript
Raw Normal View History

2023-09-23 18:49:47 +02:00
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
}
2023-09-23 18:49:47 +02:00
}