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" }