UNPKG

modrinthjs

Version:
17 lines (16 loc) 353 B
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; };