mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-12-04 07:33:08 +02:00
10 lines
241 B
TypeScript
10 lines
241 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>;
|
|
};
|
|
}
|