UNPKG

reveal-sdk-node

Version:

RevealBI Node.js SDK

19 lines (18 loc) 633 B
import { RVDashboardDataSource } from "../AbstractClasses/RVDashboardDataSource"; /** * The data source object used to represent the in-memory data source, there are no additional properties in this class * as all relevant information is specified in the {@link RVInMemoryDataSourceItem} object */ export declare class RVInMemoryDataSource extends RVDashboardDataSource { constructor(); /** @hidden */ constructor(json: any); /** @hidden */ toJson(): any; /** @hidden */ getProviderKey(): string; /** @hidden */ getType(): string; /** @hidden */ _getWrapper(): any; }