изменил иерархию файлов

This commit is contained in:
Aleksey Chichenkov 2018-09-24 19:03:29 +03:00
parent 9ef7ac0df9
commit dd1eed15cf
52 changed files with 1602 additions and 938 deletions

View file

@ -0,0 +1,59 @@
/**
*
* @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 () {
};
}