File size: 258 Bytes
e4a770a
922b1b2
 
 
 
e4a770a
b8c0a1d
922b1b2
1
2
3
4
5
6
7
8
9
import type { Session } from "./Session";
import type { Timestamps } from "./Timestamps";
import type { User } from "./User";

export interface MessageEvent extends Pick<Timestamps, "createdAt"> {
	userId: User["_id"] | Session["sessionId"];
	ip?: string;
}