123456789101112131415161718192021222324252627 |
- import { HcInfoGeziInfo } from "./PtlHcInfo";
- /**
- * 点击两个格子合成
- */
- export interface ReqHcMerge {
- gzid1:string;
- gzid2:string;
- }
- /**
- * 返回合成信息
- */
- export interface ResHcMerge {
- list:{
- [gzid: string]: HcInfoGeziInfo;
- },
- items:number[][]
- }
- export const conf = {
- connet: "ws"
- }
|