nitro/apps/frontend/src/api/chat-history/ChatEntryType.ts

7 lines
133 B
TypeScript

export class ChatEntryType
{
public static TYPE_CHAT = 1;
public static TYPE_ROOM_INFO = 2;
public static TYPE_IM = 3;
}