modrinthjs
Version:
A type safe Modrinth implementation.
12 lines (11 loc) • 355 B
TypeScript
import type { ModifiableProject } from './ModifiableProject';
export type EditableProject = (ModifiableProject & {
/**
* The title of the moderators' message for the project
*/
moderation_message?: string | null;
/**
* The body of the moderators' message for the project
*/
moderation_message_body?: string | null;
});