@oracle/suitecloud-unit-testing
Version:
<p align="left"><a href="#"><img width="250" src="resources/netsuite_logo_simplified.png"></a></p>
31 lines (29 loc) • 633 B
JavaScript
define([], function () {
/**
* @class ChildNodesSelector
* @classDescription Used to select all child nodes from a certain path in a pivot
* @constructor
* @protected
*
* @since 2021.2
*/
function ChildNodesSelector() {
/**
* Returns the object type name (workbook.ChildNodesSelector)
* @governance none
* @return {string}
*
* @since 2021.2
*/
this.toString = function () {};
/**
* get JSON format of the object
* @governance none
* @return {Object}
*
* @since 2021.2
*/
this.toJSON = function () {};
}
return new ChildNodesSelector();
});