export interface IRoomAccountData {
    type: string;
    room_id: string;
    content: Record<string, unknown>;
}
