MCPcopy Index your code
hub / github.com/TeleBoxOrg/TeleBox_Plugins / CachedMsg

Interface CachedMsg

fbi/fbi.ts:45–50  ·  view source on GitHub ↗

Minimal serializable representation of a chat message

Source from the content-addressed store, hash-verified

43
44/** Minimal serializable representation of a chat message */
45interface CachedMsg {
46 id: number;
47 senderId: number;
48 date: number;
49 text: string;
50}
51
52interface CachedChat {
53 username?: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected