/** * 请求邮件信息 */ export interface ReqMailInfo { } /** * 返回邮件信息列表 */ export interface ResMailInfo { [id:string]:MailInfo } export interface MailInfo { id: string title: string //标题 content: string //内容 items: number[][] //道具列表 fts: number //发送时间 rts: number //读取时间 ets: number //过期时间 小于等于当前时间要隐藏 dts: number //删除时间 } export const conf = { connet: "ws" }