PtlHcEmit.ts 268 B

1234567891011121314151617181920212223
  1. import { HcInfoGeziInfo } from "./PtlHcInfo";
  2. /**
  3. * 请求接口 点击发射器
  4. */
  5. export interface ReqHcEmit {
  6. gzid:string
  7. }
  8. /**
  9. * 返回信息
  10. */
  11. export interface ResHcEmit {
  12. [gzid: string]: HcInfoGeziInfo;
  13. }
  14. export const conf = {
  15. connet: "ws"
  16. }