Interface BannedUserData

The data specific to a banned user.

interface BannedUserData {
    date: number;
    daysLeft: null | number;
    id: string;
    name: string;
    note: string;
}

Hierarchy (view full)

Implemented by

Properties

Properties

date: number

The unix timestamp when the action occurred.

daysLeft: null | number

The number of days left on the ban. If null the ban is permanent.

id: string

The ID of this user.

name: string

The username of this user.

note: string

The mod note.