1234567891011121314151617181920212223 |
- import { HcInfoGeziInfo } from "./PtlHcInfo";
- /**
- * 请求接口 点击发射器
- */
- export interface ReqHcEmit {
- gzid:string
- }
- /**
- * 返回信息
- */
- export interface ResHcEmit {
- [gzid: string]: HcInfoGeziInfo;
- }
- export const conf = {
- connet: "ws"
- }
|