1declare namespace IMedia { 2 export interface ICommentItem { 3 id?: string; 4 // 用户名 5 nickName: string; 6 // 头像 7 avatar?: string; 8 // 评论内容 9 comment: string; 10 // 点赞数 11 like?: number; 12 // 评论时间 13 createAt?: number; 14 // 地址 15 location?: string; 16 } 17 18 export interface IComment extends ICommentItem { 19 // 回复 20 replies?: IComment[]; 21 } 22} 23