UNPKG

reveal-sdk-node

Version:

RevealBI Node.js SDK

20 lines (19 loc) 745 B
import { RVDataSourceItem } from "../AbstractClasses/RVDataSourceItem"; import { RVGoogleSearchConsoleDataSource } from "./RVGoogleSearchConsoleDataSource"; import { nullableString } from "../types"; /** Google Search Console data source item. */ export declare class RVGoogleSearchConsoleDataSourceItem extends RVDataSourceItem { /** @hidden */ constructor(json: any); constructor(dataSource: RVGoogleSearchConsoleDataSource); /** @hidden */ toJson(): any; private _siteUrl; /** The URL of the property as defined in Search Console */ get siteUrl(): nullableString; set siteUrl(value: nullableString); /** @hidden */ getType(): string; /** @hidden */ _getWrapper(): any; }