chat-ui / src /lib /types /MessageEvent.ts
nsarrazin's picture
nsarrazin HF staff
Store IP in messageEvents
b8c0a1d
raw history blame
No virus
213 Bytes
import type { Timestamps } from "./Timestamps";
import type { User } from "./User";
export interface MessageEvent extends Pick<Timestamps, "createdAt"> {
userId: User["_id"] | User["sessionId"];
ip?: string;
}