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