PtlFightTest.ts 246 B

1234567891011121314151617181920212223
  1. import { FightBase, fightLogOne, FightStart } from "../base";
  2. /**
  3. * 请求接口
  4. */
  5. export interface ReqFightTest {
  6. }
  7. /**
  8. * 返回信息
  9. */
  10. export interface ResFightTest extends FightBase {
  11. }
  12. export const conf = {
  13. connet: "ws"
  14. }