Merge branch 'main' into feat/command-autocomplete-refactor

This commit is contained in:
DuckieTM
2026-06-03 16:33:58 +02:00
committed by GitHub
36 changed files with 1077 additions and 29 deletions
+1
View File
@@ -17,6 +17,7 @@ export * from './hc-center';
export * from './help';
export * from './housekeeping';
export * from './inventory';
export * from './mentions';
export * from './mod-tools';
export * from './navigator';
export * from './nitro';
+12
View File
@@ -0,0 +1,12 @@
export interface IMentionEntry
{
mentionId: number;
senderId: number;
senderUsername: string;
roomId: number;
roomName: string;
message: string;
mentionType: number;
timestamp: number;
read: boolean;
}
+5
View File
@@ -0,0 +1,5 @@
export class MentionType
{
public static DIRECT: number = 0;
public static ROOM: number = 1;
}
+2
View File
@@ -0,0 +1,2 @@
export * from './MentionType';
export * from './IMentionEntry';