21 lines
429 B
TypeScript
21 lines
429 B
TypeScript
import { joinFightData } from '../../../shared/fightControl/fightType';
|
|
import { player } from '../../../shared/protocols/user/type';
|
|
|
|
|
|
export type ReqUpUser = {
|
|
uid: string;
|
|
info: joinFightData | null;
|
|
group: number;
|
|
troop: number;
|
|
addScore: number;
|
|
allScore: number;
|
|
log: {
|
|
player: Partial<player>[];
|
|
troop: number[];
|
|
winSide: number;
|
|
};
|
|
};
|
|
|
|
export type ResUpUser = {
|
|
|
|
}; |