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

11 lines
253 B
TypeScript
Raw Normal View History

2023-09-23 18:49:47 +02:00
/// <reference path="attachment.ts" />
/// <reference path="status_params.ts" />
namespace Entity {
export type ScheduledStatus = {
id: string
scheduled_at: string
params: StatusParams
media_attachments: Array<Attachment> | null
}
2023-09-23 18:49:47 +02:00
}