/// /// /// declare namespace Entity { type Announcement = { id: string; content: string; starts_at: string | null; ends_at: string | null; published: boolean; all_day: boolean; published_at: string; updated_at: string; read?: boolean; mentions: Array; statuses: Array; tags: Array; emojis: Array; reactions: Array; }; type AnnouncementAccount = { id: string; username: string; url: string; acct: string; }; type AnnouncementStatus = { id: string; url: string; }; }