Files

8 lines
268 B
TypeScript
Raw Permalink Normal View History

2025-09-08 22:59:32 +08:00
import type { ApiResponse } from "../client/types";
import proto from "db://assets/Scripts/proto/proto.pb.js";
export interface ICommonService {
// 获取配置
reqResConfig(req: proto.cs.ICSGetResConfigReq): Promise<ApiResponse<proto.cs.ICSGetResConfigRes>>;
}