reveal-sdk-node
Version:
RevealBI Node.js SDK
24 lines (23 loc) • 794 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RVCsvDataSource = void 0;
const RVDashboardDataSource_1 = require("../AbstractClasses/RVDashboardDataSource");
/**
* The data source object used to represent the CSV data source, there are no additional properties in this class
* as all relevant information is specified in the {@link RVCsvDataSourceItem} object.
*/
class RVCsvDataSource extends RVDashboardDataSource_1.RVDashboardDataSource {
/** @hidden */
getType() {
return "RVCsvDataSource";
}
/** @hidden */
getProviderKey() {
return "CSVLOCALFILEPROVIDER";
}
/** @hidden */
_getWrapper() {
return super._getWrapper();
}
}
exports.RVCsvDataSource = RVCsvDataSource;