/** * * @group providers_interface * @namespace Platform */ function Platform() { /** * @name tm * @public * @type {Trees} * @memberof Platform */ this.tm = new Trees(); /** * * @public * @function mm * @memberof Platform * @returns {Models} */ this.mm = function () { }; /** * * @public * @function core_translations * @memberof Platform * @returns {CoreTranslations} */ this.core_translations = function () { }; /** * * @public * @function m_sys_addr * @memberof Platform * @returns {v2.address} */ this.m_sys_addr = function () { }; /** * * @public * @function m_address * @memberof Platform * @returns {v2.address} */ this.m_address = function () { }; }