This commit is contained in:
Reto Brunner 2024-02-24 13:28:55 +01:00
commit d716402da2
3 changed files with 18 additions and 16 deletions

10
shared/types/mention.ts Normal file
View file

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