изменил иерархию файлов
This commit is contained in:
parent
9ef7ac0df9
commit
dd1eed15cf
52 changed files with 1602 additions and 938 deletions
59
docfiles/providers/interface/platform.js
Normal file
59
docfiles/providers/interface/platform.js
Normal 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 () {
|
||||
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue