/** * @copyright NHCarrigan * @license Naomi's Public License * @author Naomi Carrigan */ /** * This should match the JSON schema for the announcement response. * @see {@link announcementJsonSchema} */ export interface AnnouncementResponse { markdown: { content: string; title: string; }; plaintext: string; threaded: Array; }