import { ICarnageReportMatchmadePlayer, ICarnageReportMultiplayer } from './CarnageReport'; export interface ICarnageReportWarzonePlayer extends ICarnageReportMatchmadePlayer { /** The maximum level the player achieved in the match. */ WarzoneLevel: number; /** The total number of "pies" (in-game currency) the player earned in the match. */ TotalPiesEarned: number; } export interface ICarnageReportWarzone extends ICarnageReportMultiplayer { /** @inheritdoc */ PlayerStats: ICarnageReportWarzonePlayer[]; }