hoshimi
    Preparing search index...

    Interface ClientData

    The client data for the manager.

    interface ClientData {
        id: string;
        username?: string;
        [key: string]: unknown;
        [key: number]: unknown;
        [key: symbol]: unknown;
    }

    Hierarchy

    • Record<string | number | symbol, unknown>
      • ClientData

    Indexable

    • [key: string]: unknown
    • [key: number]: unknown
    • [key: symbol]: unknown
    Index

    Properties

    Properties

    id: string

    The id of the client.

    username?: string

    The username of the client.