убрал датасорсы и переработаны паблишеры
This commit is contained in:
parent
5335ac8c96
commit
34fc85333c
19 changed files with 319 additions and 127 deletions
32
docfiles/providers/managers/publishers/base/items/item.js
Normal file
32
docfiles/providers/managers/publishers/base/items/item.js
Normal file
|
@ -0,0 +1,32 @@
|
|||
/** @typedef {Publishers.PublisherManager.Publisher.Items.Item} PublisherItem */
|
||||
|
||||
/**
|
||||
*
|
||||
* @group manager
|
||||
* @class Item
|
||||
* @memberof Publishers.PublisherManager.Publisher.Items
|
||||
*/
|
||||
var Item = function () {
|
||||
/**
|
||||
*
|
||||
* @function id
|
||||
* @public
|
||||
* @memberof Publishers.PublisherManager.Publisher.Items.Item
|
||||
* @type {v2.integer}
|
||||
*/
|
||||
this.id = function () {
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function get
|
||||
* @memberof Publishers.PublisherManager.Publisher.Items.Item
|
||||
* @param _index {v2.integer}
|
||||
* @returns {tools.promise(PublisherItemAttribute)}
|
||||
*/
|
||||
this.get = function (_index) {
|
||||
|
||||
};
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue