import Collection from '../common/collection'; /** * @class MeetingInfoCollection */ export default class MeetingInfoCollection extends Collection { namespace: string; /** * @memberof MeetingInfoCollection * @constructor * @public */ constructor(); /** * @param {String} id ID of the meeting info you wish to retreive * @returns {MeetingInfo} returns a meeting info instance * @public * @memberof MeetingInfoCollection */ get(id: string): any; }