modrinthjs
Version:
A type safe Modrinth implementation.
15 lines (14 loc) • 337 B
TypeScript
/**
* A message that a moderator sent regarding the project
* @deprecated
*/
export type ModeratorMessage = {
/**
* The message that a moderator has left for the project
*/
message?: string;
/**
* The longer body of the message that a moderator has left for the project
*/
body?: string | null;
};