export {}; /** * @class * @name Favorite * @public * @description * This class represents a Favorite.
*/ declare class Favorite { id: string; peerId: string; type: string; room: any; contact: any; conv: any; position: number; constructor(id: string, peerId: string, type: string, position: number); } export { Favorite };