UNPKG

reveal-sdk-node

Version:

RevealBI Node.js SDK

23 lines (22 loc) 959 B
import { RVSqlBasedDataSource } from "./RVSqlBasedDataSource"; export declare abstract class RVSqlPDSDataSource extends RVSqlBasedDataSource { private _processDataOnServerDefaultValue; /** Sets the default value for "Process Data on Server" option for this data source, the * end user can still change the value, unless {@link processDataOnServerReadOnly} is true. */ get processDataOnServerDefaultValue(): boolean; set processDataOnServerDefaultValue(value: boolean); private _processDataOnServerReadOnly; /** * When set to true the user will not be allowed to change the value for "Process Data on Server" option * and the default value will be used. */ get processDataOnServerReadOnly(): boolean; set processDataOnServerReadOnly(value: boolean); /** @hidden */ constructor(json?: any); /** @hidden */ toJson(): any; /** @hidden */ _getWrapper(): any; }