import { YOU } from 'wechaty-puppet'; export interface RoomJoinEvent { inviteeIdList: Array; inviterId: string | YOU; roomId: string; timestamp: number; } export interface RoomLeaveEvent { leaverIdList: Array<(string | YOU)>; removerId: string | YOU; roomId: string; timestamp: number; } export interface RoomTopicEvent { changerId: string | YOU; roomId: string; topic: string; timestamp: number; } export interface RoomInviteEvent { fromUser: string; msgId: string; receiver: string; roomName: string; thumbUrl: string; timestamp: number; url: string; } //# sourceMappingURL=model-event.d.ts.map