9 lines
309 B
TypeScript
9 lines
309 B
TypeScript
// 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 {
|
||
|
|
// 购买聊天次数
|
||
|
|
reqBuyChat(req: proto.cs.ICSBuyChatReq): Promise<ApiResponse<proto.cs.ICSBuyChatRes>>;
|
||
|
|
}
|