//! Copyright (C) Call of Nil contributors //! SPDX-License-Identifier: AGPL-3.0-only import { ArmyPersonnel } from './ArmyPersonnel'; import { Coord } from './Coord'; import { ReportId } from './ReportId'; import { RoundId } from './RoundId'; import { Ruler } from './Ruler'; export type SupportReport = { id: ReportId; sender: Ruler; receiver: Ruler; origin: Coord; destination: Coord; personnel: ArmyPersonnel; round: RoundId; createdAt: string; };