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

11 lines
241 B
TypeScript
Raw Normal View History

2023-09-23 19:49:47 +03: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>;
};
}