UNPKG

reveal-sdk-node

Version:

RevealBI Node.js SDK

16 lines (15 loc) 551 B
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; }