reveal-sdk-node
Version:
RevealBI Node.js SDK
33 lines (32 loc) • 1.13 kB
TypeScript
import { RVDashboardDataSource } from "../AbstractClasses/RVDashboardDataSource";
import { nullableString } from "../types";
/** Microsoft Reporting Services (MS SSRS) data source */
export declare class RVReportingServicesDataSource extends RVDashboardDataSource {
constructor();
/** @hidden */
constructor(json: any);
/** @hidden */
toJson(): any;
/** @hidden */
getProviderKey(): string;
private _url;
/** URL to the server */
get url(): nullableString;
set url(value: nullableString);
private _path;
/** Path in the server, used only when SSRS is running integrated into Sharepoint */
get path(): nullableString;
set path(value: nullableString);
private _serverMode;
/** Gets the report server mode */
get serverMode(): nullableString;
set serverMode(value: nullableString);
private _serverVersion;
/** Gets the report server version */
get serverVersion(): nullableString;
set serverVersion(value: nullableString);
/** @hidden */
getType(): string;
/** @hidden */
_getWrapper(): any;
}