generated from nhcarrigan/template
feat: use json schema to get all announcements
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
/**
|
||||
* @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 {
|
||||
bluesky: Array<string>;
|
||||
discord: {
|
||||
content: string;
|
||||
title: string;
|
||||
};
|
||||
facebook: string;
|
||||
linkedin: string;
|
||||
reddit: {
|
||||
content: string;
|
||||
title: string;
|
||||
};
|
||||
twitter: Array<string>;
|
||||
}
|
||||
Reference in New Issue
Block a user