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