mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-19 23:16:21 +00:00
18 lines
320 B
TypeScript
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;
|
|
}
|