1234567891011121314151617181920212223 |
- import { Notices } from "../plat/PtlPlatLogin";
- /**
- * 请求接口 获取内部公告
- */
- export interface ReqUserNotices {
- }
- /**
- * 返回信息
- */
- export interface ResUserNotices {
- notices: Notices[]; //游戏公告(内部)
- }
- export const conf = {
- connet: "ws"
- }
|