PtlFightHc.ts 348 B

1234567891011121314151617181920212223242526
  1. import { FightBase } from "../base"
  2. import { HcInfoGeziInfo } from "../hc/PtlHcInfo";
  3. /**
  4. * 请求接口 合成战斗
  5. */
  6. export interface ReqFightHc {
  7. gzid:string
  8. }
  9. /**
  10. * 返回信息
  11. */
  12. export interface ResFightHc extends FightBase {
  13. list:{
  14. [gzid: string]: HcInfoGeziInfo;
  15. },
  16. }
  17. export const conf = {
  18. connet: "ws"
  19. }