// assets/Scripts/services/logic/IChatService.ts import type { ApiResponse } from "../client/types"; import proto from "db://assets/Scripts/proto/proto.pb.js"; export interface IChatService { // 上报聊天数据 reqChatMsg(req: proto.cs.ICSChatMsgReq): Promise>; // 获取聊天数据 reqGetChatMsg(req: proto.cs.ICSGetChatMsgReq): Promise>; // 获取技师聊天次数 reqChatCountData(req: proto.cs.ICSGetChatRemainCountReq): Promise>; }