reveal-sdk-node
Version:
RevealBI Node.js SDK
32 lines (31 loc) • 966 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RVInMemoryDataSource = void 0;
const RVDashboardDataSource_1 = require("../AbstractClasses/RVDashboardDataSource");
/**
* The data source object used to represent the in-memory data source, there are no additional properties in this class
* as all relevant information is specified in the {@link RVInMemoryDataSourceItem} object
*/
class RVInMemoryDataSource extends RVDashboardDataSource_1.RVDashboardDataSource {
/** @hidden */
constructor(json) {
super(json);
}
/** @hidden */
toJson() {
return super.toJson();
}
/** @hidden */
getProviderKey() {
return 'InMemory';
}
/** @hidden */
getType() {
return "RVInMemoryDataSource";
}
/** @hidden */
_getWrapper() {
return super._getWrapper();
}
}
exports.RVInMemoryDataSource = RVInMemoryDataSource;