Type Alias NetworkSlot
NetworkSlot : {
game: string;
group_members: number[];
name: string;
type: typeof slotTypes[keyof typeof slotTypes];
}
game: string;
group_members: number[];
name: string;
type: typeof slotTypes[keyof typeof slotTypes];
}
Type declaration
Readonly
game: stringThe game this slot is playing.
Readonly
group_members : number[]Contains a list of player ids, if the
type
is slotTypes.group. Used for item links, otherwise empty.Readonly
name: stringThe original slot name as defined by the player's configuration file. Individual names are unique among players.
Readonly
type: typeof slotTypes[keyof typeof slotTypes]The type of slot this is. See slotTypes for known slot types.
An object representing metadata about a given slot on each team.