iceshrimp-legacy/packages/megalodon/lib/src/entities/scheduled_status.d.ts

11 lines
276 B
TypeScript

/// <reference path="attachment.d.ts" />
/// <reference path="status_params.d.ts" />
declare namespace Entity {
type ScheduledStatus = {
id: string;
scheduled_at: string;
params: StatusParams;
media_attachments: Array<Attachment>;
};
}