generated from nhcarrigan/template
19 lines
362 B
TypeScript
19 lines
362 B
TypeScript
/**
|
|
* @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<string>;
|
|
}
|