import { TeamOptions } from './types'; /** * The team class * @author Eirik Måseidvåg * @abstract */ export default class Team { /** * The ID of the team. Represented by a UUIDv4 string * @public */ readonly id: string; /** * The ID of the tactic that the team is associated with * @public */ tacticId: string; /** * The name of the team * @public */ name: string; /** * The color of the team * @public */ color: number; /** * Construct the instance * @param options * @protected */ constructor(options: TeamOptions); }