подправил стили для кода примеров. Добавил 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

@ -0,0 +1,34 @@
/**
*
* @group manager
* @class Items
* @memberof Publishers.Publisher
*/
var Items = function () {
/**
*
* @public
* @function get
* @memberof Publishers.Publisher.Items
* @param _id {v2.integer}
* @returns {tools.promise(PublisherItem)}
*/
this.get = function (_id) {
};
/**
*
* @public
* @function is_exist
* @memberof Publishers.Publisher.Items
* @param _id {v2.integer}
* @returns {boolean}
*/
this.is_exist = function (_id) {
};
};