import { FightBase } from "../base" import { HcInfoGeziInfo } from "../hc/PtlHcInfo"; /** * 请求接口 合成战斗 */ export interface ReqFightHc { gzid:string } /** * 返回信息 */ export interface ResFightHc extends FightBase { list:{ [gzid: string]: HcInfoGeziInfo; }, } export const conf = { connet: "ws" }