Files
hikari/server/src/interfaces/announcementResponse.ts
T
naomi e010b4904b
Node.js CI / CI (pull_request) Failing after 27s
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 56s
feat: clean up prompt schema into formats instead of platforms
2025-12-23 19:40:25 -08:00

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>;
}