mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-19 23:16:21 +00:00
Merge branch 'main' into feat/command-autocomplete-refactor
This commit is contained in:
@@ -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';
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
export class MentionType
|
||||
{
|
||||
public static DIRECT: number = 0;
|
||||
public static ROOM: number = 1;
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
export * from './MentionType';
|
||||
export * from './IMentionEntry';
|
||||
Reference in New Issue
Block a user