reveal-sdk-node
Version:
RevealBI Node.js SDK
14 lines (13 loc) • 509 B
TypeScript
import { RVDashboardDataSource } from "../AbstractClasses/RVDashboardDataSource";
/**
* The data source object used to represent the CSV data source, there are no additional properties in this class
* as all relevant information is specified in the {@link RVCsvDataSourceItem} object.
*/
export declare class RVCsvDataSource extends RVDashboardDataSource {
/** @hidden */
getType(): string;
/** @hidden */
getProviderKey(): string;
/** @hidden */
_getWrapper(): any;
}