UNPKG

reveal-sdk-node

Version:

RevealBI Node.js SDK

19 lines (18 loc) 578 B
import { RVSqlPDSDataSource } from "../AbstractClasses/RVSqlPDSDataSource"; import { nullableString } from "../types"; /** MariaDB data source */ export declare class RVMariaDBDataSource 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; }