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

17 lines
292 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;
}