UNPKG

reveal-sdk-node

Version:

RevealBI Node.js SDK

21 lines (20 loc) 619 B
import { RVSqlPDSDataSource } from "../AbstractClasses/RVSqlPDSDataSource"; import { nullableString } from "../types"; /** MySQL data source */ export declare class RVMySqlDataSource extends RVSqlPDSDataSource { 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; }