подправил стили для кода примеров. Добавил std, v2, tools, v2.ll.

This commit is contained in:
Aleksey Chichenkov 2018-09-25 15:14:18 +03:00
parent 2c27a64ea0
commit 73f3735bb6
54 changed files with 1579 additions and 342 deletions

View file

@ -7,6 +7,15 @@
* @memberof Models
*/
function Model() {
/**
*
* @public
* @name static
* @type {Models.Model.static_data}
*/
this.static = new Models.Model.static_data();
/**
*
* @public
@ -29,6 +38,19 @@ function Model() {
};
/**
*
* @public
* @function get_group
* @memberof Models.Model
* @param groupType {v2.model_type}
* @returns {tools.promise(ModelGroup)}
*/
this.get_group = function(groupType) {
};
/**
*
* @public