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