reveal-sdk-node
Version:
RevealBI Node.js SDK
18 lines (17 loc) • 596 B
TypeScript
import { nullableString } from "../types";
import { RVOracleDataSource } from "./RVOracleDataSource";
/** Oracle data source, it adds the SID property to the base properties inherited from the abstract class RVOracleDataSource. */
export declare class RVOracleSIDDataSource extends RVOracleDataSource {
constructor();
/** @hidden */
constructor(json: any);
/** @hidden */
toJson(): any;
private _sID;
get sID(): nullableString;
set sID(value: nullableString);
/** @hidden */
getType(): string;
/** @hidden */
_getWrapper(): any;
}