3fd2b55406
This reverts commit 89eea5df52
.
10 lines
253 B
TypeScript
10 lines
253 B
TypeScript
/// <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
|
|
}
|
|
}
|