interface PlayerChat {
    channel: string;
    message: string;
    player_id: string;
    time: Date;
}

Properties

channel: string
message: string
player_id: string
time: Date