PtlUserNotices.ts 279 B

1234567891011121314151617181920212223
  1. import { Notices } from "../plat/PtlPlatLogin";
  2. /**
  3. * 请求接口 获取内部公告
  4. */
  5. export interface ReqUserNotices {
  6. }
  7. /**
  8. * 返回信息
  9. */
  10. export interface ResUserNotices {
  11. notices: Notices[]; //游戏公告(内部)
  12. }
  13. export const conf = {
  14. connet: "ws"
  15. }