Improve post raid type data accuracy

This commit is contained in:
Dev 2023-12-30 10:45:37 +00:00
parent 81393fb629
commit 78c53f36d8

View File

@ -5,6 +5,12 @@ export interface IPmcData extends IBotBase
export interface IPostRaidPmcData extends IBotBase export interface IPostRaidPmcData extends IBotBase
{ {
/** Only found in profile we get from client post raid */ Stats: IPostRaidStats
EftStats: IEftStats; }
export interface IPostRaidStats
{
Eft: IEftStats
/** Only found in profile we get from client post raid */
Arena: IEftStats
} }