Files
Nitro-V3/src/api/chat-history/IChatEntry.ts
T
DuckieTM 7feb10ab15 🆙 Init V3
2026-01-31 09:10:52 +01:00

18 lines
320 B
TypeScript

export interface IChatEntry
{
id: number;
webId: number;
entityId: number;
name: string;
look?: string;
message?: string;
entityType?: number;
style?: number;
chatType?: number;
imageUrl?: string;
color?: string;
roomId: number;
timestamp: string;
type: number;
}