@vex-chat/libvex
    Preparing search index...

    Interface IUser

    IUser is a single user on the vex platform.

    This is intentionally a censored user shape for client use, containing:

    • userID
    • username
    • lastSeen
    interface IUser {
        lastSeen: number;
        userID: string;
        username: string;
    }
    Index

    Properties

    lastSeen: number

    Last-seen timestamp (unix epoch milliseconds).

    userID: string

    User identifier.

    username: string

    Public username.