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