This commit is contained in:
Aleksey Chichenkov 2018-09-19 13:40:04 +03:00
parent bbb8ca5fdf
commit d666a13d72
11 changed files with 687 additions and 164 deletions

View file

@ -14,7 +14,7 @@ function GlobalTree() {
* @public
* @function get
* @param {v2.integer} nodeId Уникальный идентификатор ноды в дереве
* @returns {tools.promise.native}
* @returns {tools.promise}
* @memberof Trees.GlobalTree
*/
this.get = function(nodeId) {
@ -64,7 +64,7 @@ function Node() {
* @public
* @function get
* @param {v2.string} attributeName Имя атрибута
* @returns {tools.promise.native}
* @returns {tools.promise}
* @memberof Trees.GlobalTree.Node
*/
this.get = function(attributeName) {
@ -102,7 +102,7 @@ function Node() {
*
* @public
* @function children
* @returns {tools.promise.native}
* @returns {tools.promise}
* @memberof Trees.GlobalTree.Node
*/
this.children = function() {