UNPKG

reveal-sdk-node

Version:

RevealBI Node.js SDK

27 lines (26 loc) 878 B
"use strict"; 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"; } } exports.RVGoogleSheetDataSource = RVGoogleSheetDataSource;