MCPcopy Create free account
hub / github.com/sqlchat/sqlchat / Message

Interface Message

src/types/message.ts:11–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9type MessageStatus = "LOADING" | "DONE" | "FAILED";
10
11export interface Message {
12 id: Id;
13 conversationId: string;
14 creatorId: Id;
15 creatorRole: CreatorRole;
16 createdAt: Timestamp;
17 content: string;
18 status: MessageStatus;
19}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected