modrinthjs
Version:
A type safe Modrinth implementation.
17 lines (16 loc) • 353 B
TypeScript
import type { ThreadMessageBody } from './ThreadMessageBody';
export type ThreadMessage = {
/**
* The ID of the message itself
*/
id: string;
/**
* The ID of the author
*/
author_id?: string | null;
body: ThreadMessageBody;
/**
* The time at which the message was created
*/
created: string;
};