thelounge/shared/types/mention.ts
Reto Brunner d716402da2 mention
2024-04-21 15:10:45 +02:00

11 lines
187 B
TypeScript

import {MessageType, UserInMessage} from "./msg";
export type SharedMention = {
chanId: number;
msgId: number;
type: MessageType;
time: Date;
text: string;
from: UserInMessage;
};