1234567891011121314151617181920212223242526 |
- import { ChannelType, ChatInfo } from "./PtlChatSend"
- /**
- * 请求接口
- */
- export interface ReqChatHistory {
- channelType:ChannelType //渠道类型(合服hefu|所有服all|世家club|跨服kua)
- xbid:number //0:获取最新10条 其他历史最后一条
- }
- /**
- * 返回信息
- */
- export interface ResChatHistory {
- [channelType:string]:{
- [id: string]: ChatInfo
- }
- }
- export const conf = {
- connet: "ws"
- }
|