add show list methods

This commit is contained in:
Aleksey Chichenkov 2018-09-19 13:25:01 +03:00
parent 3478e04a63
commit bbb8ca5fdf
13 changed files with 929 additions and 95 deletions

View file

@ -0,0 +1,30 @@
/**
*
* @class ModelType
* @memberof ModelTypes
*/
function ModelType() {
/**
*
* @public
* @function get_group_type_id
* @param alias
* @returns v2.address
* @memberof ModelTypes.ModelType
*/
this.get_group_type_id = function(alias) {
};
/**
*
* @public
* @function aliases
* @returns v2.map(v2.string, v2.model_type)
* @memberof GroupTypes.GroupType
*/
this.aliases = function() {
};
}