Type Alias NetworkSlot

NetworkSlot: {
    game: string;
    group_members: number[];
    name: string;
    type: typeof slotTypes[keyof typeof slotTypes];
}

An object representing metadata about a given slot on each team.

Type declaration

  • Readonlygame: string

    The game this slot is playing.

  • Readonlygroup_members: number[]

    Contains a list of player ids, if the type is slotTypes.group. Used for item links, otherwise empty.

  • Readonlyname: string

    The original slot name as defined by the player's configuration file. Individual names are unique among players.

  • Readonlytype: typeof slotTypes[keyof typeof slotTypes]

    The type of slot this is. See slotTypes for known slot types.