reveal-sdk-node
Version:
RevealBI Node.js SDK
17 lines (16 loc) • 593 B
TypeScript
import { RVDashboardDataSource } from "../AbstractClasses/RVDashboardDataSource";
/**
* The data source object used to represent the local files data source, there are no additional properties in this class
* as all relevant information is specified in the {@link RVLocalFileDataSourceItem} object.
*/
export declare class RVLocalFileDataSource extends RVDashboardDataSource {
constructor();
/** @hidden */
constructor(json: any);
/** @hidden */
toJson(): any;
/** @hidden */
getProviderKey(): string;
/** @hidden */
getType(): string;
}