35 lines
543 B
JavaScript
35 lines
543 B
JavaScript
|
/**
|
||
|
*
|
||
|
* @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) {
|
||
|
|
||
|
};
|
||
|
};
|
||
|
|
||
|
|