reveal-sdk-node
Version:
RevealBI Node.js SDK
21 lines (20 loc) • 569 B
TypeScript
import { RVDataSourceItem } from "../AbstractClasses/RVDataSourceItem";
import { nullableString } from "../types";
/**
* Dropbox data source item, referencing a file in Dropbox
*/
export declare class RVDropboxDataSourceItem extends RVDataSourceItem {
constructor();
/** @hidden */
constructor(json: any);
/** @hidden */
toJson(): any;
private _path;
/**
* Path to the file in Dropbox account
*/
get path(): nullableString;
set path(value: nullableString);
/** @hidden */
getType(): string;
}