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