reveal-sdk-node
Version:
RevealBI Node.js SDK
21 lines (20 loc) • 744 B
TypeScript
import { RVSqlBasedDataSource } from "../AbstractClasses/RVSqlBasedDataSource";
import { nullableString } from "../types";
/** Sybase data source, it adds the database name property to the base properties inherited from the abstract class RVSqlBasedDataSource. */
export declare class RVSyBaseDataSource extends RVSqlBasedDataSource {
constructor();
/** @hidden */
constructor(json: any);
/** @hidden */
toJson(): any;
/** @hidden */
getProviderKey(): string;
private _database;
/** Name of the database to connect to. */
get database(): nullableString;
set database(value: nullableString);
/** @hidden */
getType(): string;
/** @hidden */
_getWrapper(): any;
}