UNPKG

reveal-sdk-node

Version:

RevealBI Node.js SDK

31 lines (30 loc) 859 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.RVGoogleSearchConsoleDataSource = void 0; const RVDashboardDataSource_1 = require("../AbstractClasses/RVDashboardDataSource"); /** * Google Search console data source */ class RVGoogleSearchConsoleDataSource extends RVDashboardDataSource_1.RVDashboardDataSource { /** @hidden */ constructor(json) { super(json); } /** @hidden */ toJson() { return super.toJson(); } /** @hidden */ getProviderKey() { return 'GOOGLE_SEARCH_CONSOLE'; } /** @hidden */ getType() { return "RVGoogleSearchConsoleDataSource"; } /** @hidden */ _getWrapper() { return super._getWrapper(); } } exports.RVGoogleSearchConsoleDataSource = RVGoogleSearchConsoleDataSource;