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