HJ_Server/src/shared/protocols/PtlFightTest.ts
DESKTOP-15R5JU0\legu 97e070ea81 init
2023-11-17 12:02:12 +08:00

18 lines
409 B
TypeScript

import { fightResult } from '../fightControl/fightType';
import { ResGetList } from './hero/PtlGetList';
import { player } from './user/type';
export type ReqFightTest = {
player?: [Partial<player>, Partial<player>];
roles: [args[], args[]];
};
export type ResFightTest = {
result: fightResult;
};
type args = {
hero: Partial<ResGetList['list']['']>;
attr: { [k: string]: number; };
};