1234567891011121314151617181920212223242526 |
- 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"
- }
|